GIGA FIXED EVERYTHING OMG

This commit is contained in:
zman 2025-02-04 22:30:33 -05:00
parent 85510a4671
commit bd9cfca7a9
14 changed files with 1182 additions and 101 deletions

3
.gitignore vendored
View File

@ -170,4 +170,5 @@ cython_debug/
# my stuff
*.db
temp/
temp/
.DS_Store

View File

@ -53,6 +53,12 @@ class Sale(Base):
date_created = Column(DateTime, default=datetime.now)
date_modified = Column(DateTime, default=datetime.now, onupdate=datetime.now)
class Order(Base):
__tablename__ = "orders"
id = Column(String, primary_key=True)
sale_id = Column(String, ForeignKey("sales.id"))
class Ledger(Base):
"""
ledger associates financial transactions with a user
@ -162,6 +168,7 @@ class Card(Base):
language = Column(String)
scryfall_id = Column(String)
manabox_id = Column(String)
tcgplayer_id = Column(Integer)
date_created = Column(DateTime, default=datetime.now)
date_modified = Column(DateTime, default=datetime.now, onupdate=datetime.now)
@ -180,6 +187,20 @@ class CardManabox(Base):
condition = Column(String)
language = Column(String)
class CardTCGPlayer(Base):
__tablename__ = "card_tcgplayer"
product_id = Column(String, ForeignKey("cards.product_id"), primary_key=True)
group_id = Column(Integer, ForeignKey("tcgplayer_groups.group_id"))
tcgplayer_id = Column(Integer)
product_line = Column(String)
set_name = Column(String)
product_name = Column(String)
title = Column(String)
number = Column(String)
rarity = Column(String)
condition = Column(String)
class Warehouse(Base):
"""
container that is associated with a user and contains inventory and stock

View File

@ -7,9 +7,10 @@ from services.pricing import PricingService
from services.file import FileService
from services.product import ProductService
from services.inventory import InventoryService
from services.task import TaskService
from fastapi import Depends, Form
from db.database import get_db
from schemas.file import FileMetadata
from schemas.file import CreateFileRequest
## file
@ -19,18 +20,30 @@ def get_file_service(db: Session = Depends(get_db)) -> FileService:
return FileService(db)
# metadata
def get_file_metadata(
def get_create_file_metadata(
type: str = Form(...),
source: str = Form(...)
) -> FileMetadata:
source: str = Form(...),
service: str = Form(None),
filename: str = Form(None)
) -> CreateFileRequest:
"""Dependency injection for FileMetadata"""
return FileMetadata(type=type, source=source)
return CreateFileRequest(type=type, source=source, service=service, filename=filename)
def get_tcgplayer_service(
db: Session = Depends(get_db)
) -> TCGPlayerService:
"""Dependency injection for TCGPlayerService"""
return TCGPlayerService(db)
# product
def get_product_service(db: Session = Depends(get_db), file_service: FileService = Depends(get_file_service)) -> ProductService:
def get_product_service(db: Session = Depends(get_db), file_service: FileService = Depends(get_file_service), tcgplayer_service: TCGPlayerService = Depends(get_tcgplayer_service)) -> ProductService:
"""Dependency injection for ProductService"""
return ProductService(db, file_service)
return ProductService(db, file_service, tcgplayer_service)
# task
def get_task_service(db: Session = Depends(get_db), product_service: ProductService = Depends(get_product_service)) -> TaskService:
"""Dependency injection for TaskService"""
return TaskService(db, product_service)
## Inventory
def get_inventory_service(db: Session = Depends(get_db)) -> InventoryService:
@ -55,15 +68,6 @@ def get_pricing_service(db: Session = Depends(get_db)) -> PricingService:
"""Dependency injection for PricingService"""
return PricingService(db)
## tcgplayer
def get_tcgplayer_service(
db: Session = Depends(get_db),
pricing_service: PricingService = Depends(get_pricing_service)
) -> TCGPlayerService:
"""Dependency injection for TCGPlayerService"""
return TCGPlayerService(db, pricing_service)
## Data
def get_data_service(
db: Session = Depends(get_db),

View File

@ -4,9 +4,12 @@ import uvicorn
from routes.routes import router
from db.database import init_db, check_db_connection, destroy_db, get_db
from db.utils import db_transaction
from services.task import TaskService
import logging
import sys
from services.tcgplayer import TCGPlayerService, PricingService
from services.product import ProductService
from services.file import FileService
from db.models import TCGPlayerGroups
@ -56,8 +59,11 @@ async def startup_event():
# populate tcgplayer groups
if db.query(TCGPlayerGroups).count() == 0:
with db_transaction(db):
tcgplayer_service = TCGPlayerService(db, PricingService(db))
tcgplayer_service = TCGPlayerService(db)
tcgplayer_service.populate_tcgplayer_groups()
# Start task service
task_service = TaskService(db, ProductService(db, FileService(db), TCGPlayerService(db)))
await task_service.start()
@app.on_event("shutdown")

View File

@ -1,7 +1,7 @@
from fastapi import APIRouter, Depends, HTTPException, UploadFile, File, Request, BackgroundTasks
from fastapi.responses import StreamingResponse
from sqlalchemy.orm import Session
from typing import Dict, Any, List
from typing import Dict, Any, List, Optional
from db.database import get_db
from services.upload import UploadService
from services.box import BoxService
@ -9,18 +9,180 @@ from services.tcgplayer import TCGPlayerService
from services.data import DataService
from services.file import FileService
from services.product import ProductService
from schemas.file import FileMetadata, FileUploadResponse, GetPreparedFilesResponse, FileDeleteResponse
from services.task import TaskService
from schemas.file import FileSchema, CreateFileRequest, CreateFileResponse, GetFileResponse, DeleteFileResponse, GetFileQueryParams
from schemas.box import CreateBoxResponse, CreateBoxRequestData
from dependencies import get_data_service, get_upload_service, get_tcgplayer_service, get_box_service, get_file_metadata, get_file_service, get_product_service
from dependencies import get_data_service, get_upload_service, get_tcgplayer_service, get_box_service, get_create_file_metadata, get_file_service, get_product_service, get_task_service
import logging
logger = logging.getLogger(__name__)
router = APIRouter(prefix="/api", tags=["cards"])
MAX_FILE_SIZE = 1024 * 1024 * 100 # 100 MB
## GIGA FOR REAL
## FILE
## CREATE
@router.post(
"/files",
response_model=CreateFileResponse,
status_code=201
)
@router.post(
"/files",
response_model=CreateFileResponse,
status_code=201
)
async def create_file(
background_tasks: BackgroundTasks,
file: UploadFile = File(...),
metadata: CreateFileRequest = Depends(get_create_file_metadata),
file_service: FileService = Depends(get_file_service),
task_service: TaskService = Depends(get_task_service)
):
try:
# Validate file size before reading
if not file.filename:
raise HTTPException(status_code=400, detail="No filename provided")
# File size check
content = await file.read()
if len(content) > MAX_FILE_SIZE:
raise HTTPException(status_code=413, detail="File too large")
logger.debug(f"File received: {file.filename}")
logger.debug(f"Metadata: {metadata}")
# ADD FILENAME TO METADATA
if not metadata.filename:
metadata.filename = file.filename
# VALIDATE FILE
if not file_service.validate_file(content, metadata):
raise HTTPException(status_code=400, detail="Invalid file content")
# STORE FILE
created_file = file_service.create_file(content, metadata)
# Close file after processing
await file.close()
# handle manabox file background task
if metadata.source == 'manabox':
background_tasks.add_task(task_service.process_manabox_file, created_file)
return CreateFileResponse(
status_code=201,
success=True,
files=[FileSchema.from_orm(created_file)] # Changed to return list
)
except HTTPException as http_ex:
await file.close()
raise http_ex
except Exception as e:
await file.close()
logger.error(f"File upload failed: {str(e)}")
raise HTTPException(
status_code=500,
detail="Internal server error occurred during file upload"
)
## FILE
## GET
@router.get("/files/{file_id:path}", response_model=GetFileResponse)
@router.get("/files", response_model=GetFileResponse)
async def get_file(
file_id: Optional[str] = None,
query: GetFileQueryParams = Depends(),
file_service: FileService = Depends(get_file_service)
):
"""
Get file(s) by optional ID and/or status.
If file_id is provided, returns that specific file.
If status is provided, returns all files with that status.
If neither is provided, returns all files.
"""
try:
if file_id:
# Get specific file by ID
file = file_service.get_file(file_id)
return GetFileResponse(
status_code=200,
success=True,
files=[FileSchema.from_orm(file)]
)
else:
# Get multiple files with optional status filter
files = file_service.get_files(status=query.status)
return GetFileResponse(
status_code=200,
success=True,
files=[FileSchema.from_orm(f) for f in files]
)
except Exception as e:
logger.error(f"Get file(s) failed: {str(e)}")
raise HTTPException(status_code=400, detail=str(e))
## DELETE
@router.delete("/files/{file_id}", response_model=DeleteFileResponse)
async def delete_file(
file_id: str,
file_service: FileService = Depends(get_file_service)
):
try:
file = file_service.delete_file(file_id)
return DeleteFileResponse(
status_code=200,
success=True,
files=[FileSchema.from_orm(file)]
)
except Exception as e:
logger.error(f"Delete file failed: {str(e)}")
raise HTTPException(status_code=400, detail=str(e))
# FILE
"""
@router.post("/file/uploadManabox", response_model=FileUploadResponse)
async def upload_file(
background_tasks: BackgroundTasks,
@ -66,7 +228,7 @@ async def create_box(file_ids: list[str], create_box_data: CreateBoxRequestData,
except Exception as e:
logger.error(f"Create box failed: {str(e)}")
raise HTTPException(status_code=400, detail=str(e))
"""
## all old below
@router.post("/upload/manabox", response_model=dict)

View File

@ -1,29 +1,51 @@
from pydantic import BaseModel, Field
from datetime import datetime
from pydantic import BaseModel, Field, ConfigDict
from typing import Optional
from schemas.base import BaseSchema
from fastapi import UploadFile
from datetime import datetime
# For additional metadata about the upload
class FileMetadata(BaseModel):
source: str = Field(..., title="Source")
type: str = Field(..., title="Type")
# FILE
class FileSchema(BaseModel):
id: str = Field(..., title="id")
filename: str = Field(..., title="filename")
type: str = Field(..., title="type")
filesize_kb: float = Field(..., title="filesize_kb")
source: str = Field(..., title="source")
status: str = Field(..., title="status")
service: Optional[str] = Field(None, title="service")
date_created: datetime = Field(..., title="date_created")
date_modified: datetime = Field(..., title="date_modified")
# This enables ORM mode
model_config = ConfigDict(from_attributes=True)
# CREATE
# REQUEST
class CreateFileRequest(BaseModel):
source: str = Field(..., title="source")
type: str = Field(..., title="type")
# optional
service: Optional[str] = Field(None, title="Service")
filename: Optional[str] = Field(None, title="Filename")
# For the response after upload
class FileUploadResponse(BaseSchema):
id: str
filename: str
type: str
file_size_kb: float
source: str
status: str
service: str
# RESPONSE
class CreateFileResponse(BaseModel):
status_code: int = Field(..., title="status_code")
success: bool = Field(..., title="success")
files: list[FileSchema] = Field(..., title="files")
class FileDeleteResponse(BaseModel):
id: str
status: str
# GET
# RESPONSE
class GetFileResponse(BaseModel):
status_code: int = Field(..., title="status_code")
success: bool = Field(..., title="success")
files: list[FileSchema] = Field(..., title="files")
# QUERY PARAMS
class GetFileQueryParams(BaseModel):
status: Optional[str] = Field(None, title="status")
class GetPreparedFilesResponse(BaseModel):
files: list[FileUploadResponse]
# DELETE
# RESPONSE
class DeleteFileResponse(BaseModel):
status_code: int = Field(..., title="status_code")
success: bool = Field(..., title="success")
files: list[FileSchema] = Field(..., title="files")

19
schemas/order.py Normal file
View File

@ -0,0 +1,19 @@
from pydantic import BaseModel, Field, ConfigDict
from typing import Optional
from datetime import datetime
# FILE
class OrderSchema(BaseModel):
id: str = Field(..., title="id")
filename: str = Field(..., title="filename")
type: str = Field(..., title="type")
filesize_kb: float = Field(..., title="filesize_kb")
source: str = Field(..., title="source")
status: str = Field(..., title="status")
service: Optional[str] = Field(None, title="service")
date_created: datetime = Field(..., title="date_created")
date_modified: datetime = Field(..., title="date_modified")
# This enables ORM mode
model_config = ConfigDict(from_attributes=True)

View File

@ -1,75 +1,127 @@
from sqlalchemy.orm import Session
from db.utils import db_transaction
from db.models import File, StagedFileProduct
from schemas.file import FileMetadata, FileUploadResponse, GetPreparedFilesResponse, FileDeleteResponse
from schemas.file import CreateFileRequest
import os
from uuid import uuid4 as uuid
import logging
import csv
from io import StringIO
from typing import Optional, List
logger = logging.getLogger(__name__)
# Name,Set code,Set name,Collector number,Foil,Rarity,Quantity,ManaBox ID,Scryfall ID,Purchase price,Misprint,Altered,Condition,Language,Purchase price currency
MANABOX_REQUIRED_FILE_HEADERS = ['Name', 'Set code', 'Set name', 'Collector number', 'Foil', 'Rarity', 'Quantity', 'ManaBox ID', 'Scryfall ID', 'Purchase price', 'Misprint', 'Altered', 'Condition', 'Language', 'Purchase price currency']
MANABOX_ALLOWED_FILE_EXTENSIONS = ['.csv']
MANABOX_ALLOWED_FILE_TYPES = ['scan_export']
MANABOX_CONFIG = {
"required_headers": MANABOX_REQUIRED_FILE_HEADERS,
"allowed_extensions": MANABOX_ALLOWED_FILE_EXTENSIONS,
"allowed_types": MANABOX_ALLOWED_FILE_TYPES
}
SOURCES = {
"manabox": MANABOX_CONFIG
}
TEMP_DIR = os.getcwd() + '/temp/'
class FileService:
def __init__(self, db: Session):
self.db = db
# CONFIG
def get_config(self, source: str) -> dict:
return SOURCES.get(source)
def _format_response(self, file: File) -> FileUploadResponse:
response = FileUploadResponse(
id = file.id,
filename = file.filename,
type = file.type,
source = file.source,
status = file.status,
service = file.service,
file_size_kb = file.filesize_kb,
date_created=file.date_created,
date_modified=file.date_modified
)
return response
# VALIDATION
def validate_file_extension(self, filename: str, config: dict) -> bool:
return filename.endswith(tuple(config.get("allowed_extensions")))
def upload_file(self, content: bytes, filename: str, metadata: FileMetadata) -> FileUploadResponse:
# Save file to database
def validate_file_type(self, metadata: CreateFileRequest, config: dict) -> bool:
return metadata.type in config.get("allowed_types")
def validate_csv(self, content: bytes, required_headers: Optional[List[str]] = None) -> bool:
try:
# Try to decode and parse as CSV
csv_text = content.decode('utf-8')
csv_file = StringIO(csv_text)
csv_reader = csv.reader(csv_file)
# Check headers if specified
headers = next(csv_reader, None)
if required_headers and not all(header in headers for header in required_headers):
return False
return True
except (UnicodeDecodeError, csv.Error):
return False
def validate_file_content(self, content: bytes, metadata: CreateFileRequest, config: dict) -> bool:
extension = metadata.filename.split('.')[-1]
if extension == 'csv':
return self.validate_csv(content, config.get("required_headers"))
return False
def validate_file(self, content: bytes, metadata: CreateFileRequest) -> bool:
# 1. Get config
config = self.get_config(metadata.source)
# 2. Validate file extension
if not self.validate_file_extension(metadata.filename, config):
raise Exception("Invalid file extension")
# 2. validate file type
if not self.validate_file_type(metadata, config):
raise Exception("Invalid file type")
# 3. Validate file content
if not self.validate_file_content(content, metadata, config):
raise Exception("Invalid file content")
return True
# CRUD
# CREATE
def create_file(self, content: bytes, metadata: CreateFileRequest) -> File:
with db_transaction(self.db):
file = File(
id = str(uuid()),
filename = filename,
filepath = os.getcwd() + '/temp/' + filename, # TODO: config variable
filename = metadata.filename,
filepath = TEMP_DIR + metadata.filename, # TODO config variable
type = metadata.type,
source = metadata.source,
filesize_kb = round(len(content) / 1024,2),
filesize_kb = round(len(content) / 1024, 2),
status = 'pending',
service = metadata.service
)
self.db.add(file)
# save file
with open(file.filepath, 'wb') as f:
f.write(content)
response = self._format_response(file)
return response
return file
def get_file(self, file_id: str) -> File:
return self.db.query(File).filter(File.id == file_id).first()
# GET
def get_file(self, file_id: str) -> List[File]:
file = self.db.query(File).filter(File.id == file_id).first()
if not file:
raise Exception(f"File with id {file_id} not found")
return file
def get_prepared_files(self) -> list[FileUploadResponse]:
files = self.db.query(File).filter(File.status == 'prepared').all()
if len(files) == 0:
raise Exception("No prepared files found")
result = [self._format_response(file) for file in files]
logger.debug(f"Prepared files: {result}")
response = GetPreparedFilesResponse(files=result)
return response
def get_files(self, status: Optional[str] = None) -> List[File]:
if status:
return self.db.query(File).filter(File.status == status).all()
return self.db.query(File).all()
def get_staged_products(self, file_id: str) -> list[StagedFileProduct]:
# DELETE
def get_staged_products(self, file_id: str) -> List[StagedFileProduct]:
return self.db.query(StagedFileProduct).filter(StagedFileProduct.file_id == file_id).all()
def delete_file(self, file_id: str) -> FileDeleteResponse:
def delete_file(self, file_id: str) -> List[File]:
file = self.get_file(file_id)
if not file:
raise Exception(f"File with id {file_id} not found")
staged_products = self.get_staged_products(file_id)
if file:
with db_transaction(self.db):
self.db.delete(file)
for staged_product in staged_products:
self.db.delete(staged_product)
return {"id": file_id, "status": "deleted"}
else:
raise Exception(f"File with id {file_id} not found")
with db_transaction(self.db):
file.status = 'deleted'
for staged_product in staged_products:
self.db.delete(staged_product)
return file

0
services/order.py Normal file
View File

View File

@ -1,9 +1,10 @@
from sqlalchemy.orm import Session
from db.utils import db_transaction
from db.models import Product, File, CardManabox, Card, StagedFileProduct
from db.models import Product, File, CardManabox, Card, StagedFileProduct, CardTCGPlayer
from io import StringIO
import pandas as pd
from services.file import FileService
from services.tcgplayer import TCGPlayerService
from uuid import uuid4 as uuid
import logging
@ -25,9 +26,10 @@ class ManaboxRow:
self.quantity = row['quantity']
class ProductService:
def __init__(self, db: Session, file_service: FileService):
def __init__(self, db: Session, file_service: FileService, tcgplayer_service: TCGPlayerService):
self.db = db
self.file_service = file_service
self.tcgplayer_service = tcgplayer_service
def _format_manabox_df(self, df: pd.DataFrame) -> pd.DataFrame:
# format columns
@ -81,16 +83,27 @@ class ProductService:
)
return product
def get_tcgplayer_card(self, card_manabox: CardManabox) -> CardTCGPlayer:
# check if tcgplayer_id exists for product_id in CardTCGPlayer
tcgplayer_card = self.db.query(CardTCGPlayer).filter(CardTCGPlayer.product_id == card_manabox.product_id).first()
if tcgplayer_card:
return tcgplayer_card
# if not, get tcgplayer_id from tcgplayer_service
tcgplayer_card = self.tcgplayer_service.get_tcgplayer_card(card_manabox)
return tcgplayer_card
def create_card(self, card_manabox: CardManabox) -> Card:
tcgplayer_card = self.get_tcgplayer_card(card_manabox)
card = Card(
product_id = card_manabox.product_id,
product_id = tcgplayer_card.product_id if tcgplayer_card else card_manabox.product_id,
number = card_manabox.collector_number,
foil = card_manabox.foil,
rarity = card_manabox.rarity,
condition = card_manabox.condition,
language = card_manabox.language,
scryfall_id = card_manabox.scryfall_id,
manabox_id = card_manabox.manabox_id
manabox_id = card_manabox.manabox_id,
tcgplayer_id = tcgplayer_card.tcgplayer_id if tcgplayer_card else None
)
return card
@ -114,6 +127,8 @@ class ProductService:
card_manabox = self.create_card_manabox(manabox_row)
product = self.create_product(card_manabox)
card = self.create_card(card_manabox)
card_manabox.product_id = card.product_id
product.id = card.product_id
self.db.add(card_manabox)
self.db.add(product)
self.db.add(card)
@ -129,7 +144,7 @@ class ProductService:
staged_product = self.create_staged_product(file, card_manabox, row)
# update file status
with db_transaction(self.db):
file.status = 'prepared'
file.status = 'completed'
except Exception as e:
with db_transaction(self.db):
file.status = 'error'

40
services/task.py Normal file
View File

@ -0,0 +1,40 @@
from apscheduler.schedulers.background import BackgroundScheduler
import logging
from typing import Dict, Callable
from sqlalchemy.orm import Session
from services.product import ProductService
from db.models import File
class TaskService:
def __init__(self, db: Session, product_service: ProductService):
self.scheduler = BackgroundScheduler()
self.logger = logging.getLogger(__name__)
self.tasks: Dict[str, Callable] = {}
self.db = db
self.product_service = product_service
async def start(self):
self.scheduler.start()
self.logger.info("Task scheduler started.")
self.register_scheduled_tasks()
def register_scheduled_tasks(self):
self.scheduler.add_job(
self.daily_report,
'cron',
hour=0,
minute=0,
id='daily_report'
)
# Tasks that should be scheduled
async def daily_report(self):
self.logger.info("Generating daily report")
# Daily report logic
async def process_manabox_file(self, file: File):
self.logger.info("Processing ManaBox file")
self.product_service.bg_process_manabox_file(file.id)
self.logger.info("Finished processing ManaBox file")

View File

@ -1,4 +1,4 @@
from db.models import ManaboxExportData, Box, TCGPlayerGroups, TCGPlayerInventory, TCGPlayerExportHistory, TCGPlayerPricingHistory, TCGPlayerProduct, ManaboxTCGPlayerMapping
from db.models import ManaboxExportData, Box, TCGPlayerGroups, TCGPlayerInventory, TCGPlayerExportHistory, TCGPlayerPricingHistory, TCGPlayerProduct, ManaboxTCGPlayerMapping, CardManabox, CardTCGPlayer
import requests
from sqlalchemy.orm import Session
from db.utils import db_transaction
@ -39,8 +39,7 @@ class TCGPlayerConfig:
max_retries: int = 1
class TCGPlayerService:
def __init__(self, db: Session,
pricing_service: PricingService,
def __init__(self, db: Session,
config: TCGPlayerConfig=TCGPlayerConfig(),
browser_type: Browser=Browser.BRAVE):
self.db = db
@ -48,7 +47,6 @@ class TCGPlayerService:
self.browser_type = browser_type
self.cookies = None
self.previous_request_time = None
self.pricing_service = pricing_service
def _insert_groups(self, groups):
for group in groups:
@ -282,16 +280,20 @@ class TCGPlayerService:
return {"message": "Inventory updated successfully", "export_id": export_id}
def _get_export_csv(self, set_name_ids: List[str]) -> bytes:
def _get_export_csv(self, set_name_ids: List[str], convert=True) -> bytes:
"""
Download export CSV and save to specified path
Returns True if successful, False otherwise
"""
logger.info(f"Downloading pricing export from tcgplayer with ids {set_name_ids}")
payload = self._set_pricing_export_payload(set_name_ids)
export_csv_download_url = f"{self.config.tcgplayer_base_url}{self.config.pricing_export_path}"
response = self._send_request(export_csv_download_url, method='POST', data=payload)
csv = self._process_content(response.content)
return csv
if convert:
csv = self._process_content(response.content)
return csv
else:
return response.content
def _update_tcgplayer_products(self):
pass
@ -414,7 +416,8 @@ class TCGPlayerService:
export_id = self.update_inventory("live")['export_id']
self.tcg_set_tcg_inventory_product_relationship(export_id)
self.update_pricing_for_existing_product_groups()
update_csv = self.pricing_service.create_live_inventory_pricing_update_csv()
# update_csv = self.pricing_service.create_live_inventory_pricing_update_csv()
update_csv = None
return update_csv
def get_group_ids_for_box(self, box_id: str) -> List[str]:
@ -448,5 +451,114 @@ class TCGPlayerService:
else:
raise ValueError("Must provide either box_id or upload_id")
self.update_pricing({'set_name_ids': group_ids})
add_csv = self.pricing_service.create_add_to_tcgplayer_csv(box_id)
return add_csv
# add_csv = self.pricing_service.create_add_to_tcgplayer_csv(box_id)
add_csv = None
return add_csv
def load_export_csv_to_card_tcgplayer(self, export_csv: bytes, group_id: int) -> None:
if not export_csv:
raise ValueError("No export CSV provided")
# Convert bytes to string first
text_content = export_csv.decode('utf-8')
csv_file = StringIO(text_content)
try:
reader = csv.DictReader(csv_file)
for row in reader:
product = CardTCGPlayer(
product_id=str(uuid.uuid4()),
tcgplayer_id=row['TCGplayer Id'],
group_id=group_id,
product_line=row['Product Line'],
set_name=row['Set Name'],
product_name=row['Product Name'],
title=row['Title'],
number=row['Number'],
rarity=row['Rarity'],
condition=row['Condition']
)
with db_transaction(self.db):
self.db.add(product)
finally:
csv_file.close()
def match_card_tcgplayer_to_manabox(self, card: CardManabox, group_id: int) -> CardTCGPlayer:
# Expanded rarity mapping
mb_to_tcg_rarity_mapping = {
"common": "C",
"uncommon": "U",
"rare": "R",
"mythic": "M",
"special": "S"
}
# Mapping from Manabox condition+foil to TCGPlayer condition
mb_to_tcg_condition_mapping = {
("near_mint", "foil"): "Near Mint Foil",
("near_mint", "normal"): "Near Mint",
("near_mint", "etched"): "Near Mint Foil"
}
# Get TCGPlayer condition from Manabox condition+foil combination
tcg_condition = mb_to_tcg_condition_mapping.get((card.condition, card.foil))
if tcg_condition is None:
logger.error(f"Unsupported condition/foil combination: {card.condition}, {card.foil}")
logger.error(f"Card details: name={card.name}, set_name={card.set_name}, collector_number={card.collector_number}")
return None
# Get TCGPlayer rarity from Manabox rarity
tcg_rarity = mb_to_tcg_rarity_mapping.get(card.rarity)
if tcg_rarity is None:
logger.error(f"Unsupported rarity: {card.rarity}")
logger.error(f"Card details: name={card.name}, set_name={card.set_name}, collector_number={card.collector_number}")
return None
# First query for matching products without rarity filter
base_query = self.db.query(CardTCGPlayer).filter(
CardTCGPlayer.number == card.collector_number,
CardTCGPlayer.condition == tcg_condition,
CardTCGPlayer.group_id == group_id
)
# Get all potential matches
products = base_query.all()
# If no products found, return None
if not products:
logger.error(f"No matching TCGPlayer product found for card {card.name} ({card.set_code} {card.collector_number})")
return None
# Look for an exact match including rarity, unless the TCGPlayer product is a land
for product in products:
if product.rarity == "L" or product.rarity == tcg_rarity:
return product
# If we got here, we found products but none matched our rarity criteria
logger.error(f"No matching TCGPlayer product with correct rarity found for card {card.name} ({card.set_name} {card.collector_number})")
return None
def get_tcgplayer_card(self, card: CardManabox) -> CardTCGPlayer:
# find tcgplayer group id for set code
group_id = self.db.query(TCGPlayerGroups.group_id).filter(
TCGPlayerGroups.abbreviation == card.set_code
).first()
if not group_id:
logger.error(f"Group ID not found for set code {card.set_code}")
logger.error(f"Card details: name={card.name}, set_name={card.set_name}, collector_number={card.collector_number}")
return None
group_id = group_id[0]
# check for group_id in CardTCGPlayer
group_id_exists = self.db.query(CardTCGPlayer).filter(
CardTCGPlayer.group_id == group_id).first()
if not group_id_exists:
export_csv = self._get_export_csv([str(group_id)], convert=False) # TODO should be file service
self.load_export_csv_to_card_tcgplayer(export_csv, group_id)
# match card to tcgplayer product
matching_product = self.match_card_tcgplayer_to_manabox(card, group_id)
if not matching_product:
return None
return matching_product

123
tests/file_test.py Normal file
View File

@ -0,0 +1,123 @@
from fastapi.testclient import TestClient
from fastapi import BackgroundTasks
import pytest
from unittest.mock import Mock, patch
import asyncio
import os
from main import app
from services.file import FileService
from services.task import TaskService
client = TestClient(app)
# Constants for reused values
TEST_FILE_PATH = os.path.join(os.getcwd(), "tests/test_files", "manabox_test_file.csv")
DEFAULT_METADATA = {
"source": "manabox",
"type": "scan_export"
}
def get_file_size_kb(file_path):
"""Helper to consistently calculate file size in KB"""
with open(file_path, "rb") as f:
return round(len(f.read()) / 1024, 2)
@pytest.mark.asyncio
async def test_create_manabox_file():
"""Test creating a new manabox file"""
# Open file within the test scope
with open(TEST_FILE_PATH, "rb") as test_file:
files = {"file": test_file}
# Make request
response = client.post("/api/files", data=DEFAULT_METADATA, files=files)
# Check response
assert response.status_code == 201
assert response.json()["success"] == True
file_data = response.json()["files"][0]
assert file_data["source"] == DEFAULT_METADATA["source"]
assert file_data["type"] == DEFAULT_METADATA["type"]
assert file_data["status"] == "pending"
assert file_data["service"] == None
assert file_data["filename"] == "manabox_test_file.csv"
assert file_data["filesize_kb"] == get_file_size_kb(TEST_FILE_PATH)
assert file_data["id"] is not None
# Execute background tasks if they were added
background_tasks = BackgroundTasks()
for task in background_tasks.tasks:
await task()
def test_get_file():
"""Test retrieving a specific file"""
# Create a file first
with open(TEST_FILE_PATH, "rb") as test_file:
files = {"file": test_file}
create_response = client.post("/api/files", data=DEFAULT_METADATA, files=files)
file_id = create_response.json()["files"][0]["id"]
# Get the file
response = client.get(f"/api/files/{file_id}")
# Check response
assert response.status_code == 200
assert response.json()["success"] == True
file_data = response.json()["files"][0]
assert file_data["source"] == DEFAULT_METADATA["source"]
assert file_data["type"] == DEFAULT_METADATA["type"]
assert file_data["status"] == "completed"
assert file_data["service"] == None
assert file_data["filename"] == "manabox_test_file.csv"
assert file_data["filesize_kb"] == get_file_size_kb(TEST_FILE_PATH)
assert file_data["id"] == file_id
def test_delete_file():
"""Test file deletion"""
# Create a file first
with open(TEST_FILE_PATH, "rb") as test_file:
files = {"file": test_file}
create_response = client.post("/api/files", data=DEFAULT_METADATA, files=files)
file_id = create_response.json()["files"][0]["id"]
# Delete the file
response = client.delete(f"/api/files/{file_id}")
# Check response
assert response.status_code == 200
assert response.json()["success"] == True
file_data = response.json()["files"][0]
assert file_data["source"] == DEFAULT_METADATA["source"]
assert file_data["type"] == DEFAULT_METADATA["type"]
assert file_data["status"] == "deleted"
assert file_data["service"] == None
assert file_data["filename"] == "manabox_test_file.csv"
assert file_data["filesize_kb"] == get_file_size_kb(TEST_FILE_PATH)
assert file_data["id"] == file_id
def test_get_prepared_files():
"""Test retrieving files filtered by status"""
# Create a test file first
with open(TEST_FILE_PATH, "rb") as test_file:
files = {"file": test_file}
create_response = client.post("/api/files", data=DEFAULT_METADATA, files=files)
file_id = create_response.json()["files"][0]["id"]
# Get prepared files
response = client.get("/api/files?status=completed")
# Check response
assert response.status_code == 200
assert response.json()["success"] == True
# get file from id
file_data = [file for file in response.json()["files"] if file["id"] == file_id][0]
assert file_data["source"] == DEFAULT_METADATA["source"]
assert file_data["type"] == DEFAULT_METADATA["type"]
assert file_data["status"] == "completed"
assert file_data["service"] == None
assert file_data["filename"] == "manabox_test_file.csv"
assert file_data["filesize_kb"] == get_file_size_kb(TEST_FILE_PATH)

View File

@ -0,0 +1,504 @@
Name,Set code,Set name,Collector number,Foil,Rarity,Quantity,ManaBox ID,Scryfall ID,Purchase price,Misprint,Altered,Condition,Language,Purchase price currency
"Tinybones, Bauble Burglar",FDN,Foundations,72,normal,rare,1,101414,ff3d85bc-ef2d-4251-baf4-a14bd0cee61e,0.66,false,false,near_mint,en,USD
Scrawling Crawler,FDN,Foundations,132,normal,rare,1,100912,a1176dcf-40ee-4342-aa74-791b8352e99a,4.81,false,false,near_mint,en,USD
"Giada, Font of Hope",FDN,Foundations,141,normal,rare,1,100804,8ae6fc26-cfad-4da8-98d9-49c27c24d293,1.33,false,false,near_mint,en,USD
Blasphemous Edict,FDN,Foundations,57,normal,rare,1,100168,11040ecd-3153-4029-b42b-1441bc51ec34,6.9,false,false,near_mint,en,USD
"Drakuseth, Maw of Flames",FDN,Foundations,193,normal,rare,1,100092,029b1edb-e1de-4f1c-81df-8d17f4920318,0.33,false,false,near_mint,en,USD
"Koma, World-Eater",FDN,Foundations,347,normal,rare,1,100792,8889e1ca-eec1-408b-b11e-98cc0a357a97,4.69,false,false,near_mint,en,USD
"Ghalta, Primal Hunger",FDN,Foundations,222,normal,rare,1,100635,6a9c39e4-a8cf-42dd-8d0e-45634b335546,0.54,false,false,near_mint,en,USD
Sire of Seven Deaths,FDN,Foundations,1,normal,mythic,1,100812,8d8432a7-1c8a-4cfb-947c-ecf9791063eb,18.63,false,false,near_mint,en,USD
Hero's Downfall,FDN,Foundations,319,normal,uncommon,1,101639,10cedc6d-075a-4f9b-a858-e2c29809ee33,0.39,false,false,near_mint,en,USD
"Etali, Primal Storm",FDN,Foundations,194,normal,rare,1,101037,b6af9894-95b5-4c8e-902f-a9ba70f02e4a,0.32,false,false,near_mint,en,USD
High Fae Trickster,FDN,Foundations,307,normal,rare,1,100918,a21180a4-208f-4c13-a704-58403ddaf12f,3.39,false,false,near_mint,en,USD
Mocking Sprite,FDN,Foundations,159,foil,common,1,101624,f6792f63-b651-497d-8aa5-cddf4cedeca8,0.09,false,false,near_mint,en,USD
Bake into a Pie,FDN,Foundations,169,foil,common,1,101494,2ab0e660-86a3-4b92-82fa-77dcb5db947d,0.06,false,false,near_mint,en,USD
Boltwave,FDN,Foundations,79,foil,uncommon,1,100810,8d1ec351-5e70-4eb2-b590-6bff94ef8178,4.27,false,false,near_mint,en,USD
Jungle Hollow,FDN,Foundations,263,foil,common,1,101224,dc758e14-d370-45e4-bbc5-938fb4d21127,0.08,false,false,near_mint,en,USD
Ambush Wolf,FDN,Foundations,98,foil,common,1,101492,2903832c-318e-42ab-bf58-c682ec2f7afd,0.03,false,false,near_mint,en,USD
An Offer You Can't Refuse,FDN,Foundations,160,foil,uncommon,1,100948,a829747f-cf9b-4d81-ba66-9f0630ed4565,1.51,false,false,near_mint,en,USD
Sower of Chaos,FDN,Foundations,95,foil,common,1,101556,7ff50606-491c-4946-8d03-719b01cfad77,0.02,false,false,near_mint,en,USD
Guarded Heir,FDN,Foundations,14,foil,uncommon,1,100505,525ba5c7-3ce5-4e52-b8b5-96c9040a6738,0.06,false,false,near_mint,en,USD
Wind-Scarred Crag,FDN,Foundations,271,foil,common,1,100684,759e99df-11a8-4aee-b6bc-344e84e10d94,0.08,false,false,near_mint,en,USD
Think Twice,FDN,Foundations,165,foil,common,1,101202,d88faaa1-eb41-40f7-991c-5c06e1138f3d,0.03,false,false,near_mint,en,USD
Grow from the Ashes,FDN,Foundations,225,foil,common,1,101502,42525f8a-aee7-4811-8f05-471b559c2c4a,0.07,false,false,near_mint,en,USD
Spitfire Lagac,FDN,Foundations,208,foil,common,1,101496,30f600cd-b696-4f49-9cbc-5a33aa43d04c,0.05,false,false,near_mint,en,USD
Abyssal Harvester,FDN,Foundations,54,foil,rare,1,101342,f2e0f538-5825-47e9-883c-3ec6fd5b25ea,3.18,false,false,near_mint,en,USD
Sanguine Syphoner,FDN,Foundations,68,foil,common,1,101582,b1daf5bb-c8e9-4e79-a532-ca92a9a885cd,0.19,false,false,near_mint,en,USD
Goldvein Pick,FDN,Foundations,253,foil,common,1,101572,a241317d-2277-467e-a8f9-aa71c944e244,0.06,false,false,near_mint,en,USD
Goblin Negotiation,FDN,Foundations,88,foil,uncommon,1,101335,f2016585-e26c-4d13-b09f-af6383c192f7,0.14,false,false,near_mint,en,USD
Banishing Light,FDN,Foundations,138,foil,common,1,101613,e38dc3b3-1629-491b-8afd-0e7a9a857713,0.05,false,false,near_mint,en,USD
Dauntless Veteran,FDN,Foundations,8,foil,uncommon,1,100704,7a136f26-ac66-407f-b389-357222d2c4a2,0.06,false,false,near_mint,en,USD
Run Away Together,FDN,Foundations,162,foil,common,1,101614,e598eb7b-10dc-49e6-ac60-2fefa987173e,0.02,false,false,near_mint,en,USD
"Tatyova, Benthic Druid",FDN,Foundations,247,foil,uncommon,1,101301,eabc978a-0666-472d-bdc6-d4b29d29eca4,0.14,false,false,near_mint,en,USD
"Balmor, Battlemage Captain",FDN,Foundations,237,foil,uncommon,1,100142,0b45ab13-9bb6-48af-8b37-d97b25801ac8,0.13,false,false,near_mint,en,USD
Involuntary Employment,FDN,Foundations,203,foil,common,1,101622,f3ad3d62-2f24-4562-b3fa-809213dbc4a4,0.03,false,false,near_mint,en,USD
"Dwynen, Gilt-Leaf Daen",FDN,Foundations,217,foil,uncommon,1,100086,01c00d7b-7fac-4f8c-a1ea-de2cf4d06627,0.23,false,false,near_mint,en,USD
Swiftfoot Boots,FDN,Foundations,258,foil,uncommon,1,100414,41040541-b129-4cf4-9411-09b1d9d32c19,2.03,false,false,near_mint,en,USD
Soul-Shackled Zombie,FDN,Foundations,70,foil,common,1,101609,deea5690-6eb2-4353-b917-cbbf840e4e71,0.05,false,false,near_mint,en,USD
Fake Your Own Death,FDN,Foundations,174,foil,common,1,101539,693635a6-df50-44c5-9598-0c79b45d4df4,0.09,false,false,near_mint,en,USD
Gnarlid Colony,FDN,Foundations,224,foil,common,1,101508,47565d10-96bf-4fb0-820f-f20a44a76b6f,0.05,false,false,near_mint,en,USD
Apothecary Stomper,FDN,Foundations,99,foil,common,1,101537,680b7b0c-0e1b-46ce-9917-9fc6e05aa148,0.02,false,false,near_mint,en,USD
Rugged Highlands,FDN,Foundations,265,foil,common,1,101400,fd6eaf8e-8881-4d7b-bafc-75e4ca5cbef6,0.05,false,false,near_mint,en,USD
Firebrand Archer,FDN,Foundations,196,foil,common,1,101630,fe0312f1-4c98-4b7f-8a34-0059ea80edef,0.13,false,false,near_mint,en,USD
Scoured Barrens,FDN,Foundations,266,foil,common,1,100277,2632a4b2-9ca6-4b67-9a99-14f52ad3dc41,0.12,false,false,near_mint,en,USD
Courageous Goblin,FDN,Foundations,82,foil,common,1,101566,8db6819c-666a-409d-85a5-b9ac34d8dd2f,0.02,false,false,near_mint,en,USD
Jungle Hollow,FDN,Foundations,263,normal,common,1,101224,dc758e14-d370-45e4-bbc5-938fb4d21127,0.07,false,false,near_mint,en,USD
Wind-Scarred Crag,FDN,Foundations,271,normal,common,1,100684,759e99df-11a8-4aee-b6bc-344e84e10d94,0.04,false,false,near_mint,en,USD
Dismal Backwater,FDN,Foundations,261,normal,common,1,101220,dbb0df36-8467-4a41-8e1c-6c3584d4fd10,0.06,false,false,near_mint,en,USD
Bloodfell Caves,FDN,Foundations,259,normal,common,1,100806,8b90dc92-cb66-41d9-89f9-2b6e3cfc8082,0.05,false,false,near_mint,en,USD
Rugged Highlands,FDN,Foundations,265,normal,common,1,101400,fd6eaf8e-8881-4d7b-bafc-75e4ca5cbef6,0.05,false,false,near_mint,en,USD
Scavenging Ooze,FDN,Foundations,232,normal,rare,1,100808,8c504c23-1e9a-411b-9cfe-4180d0c744f6,0.15,false,false,near_mint,en,USD
"Kiora, the Rising Tide",FDN,Foundations,45,normal,rare,1,100762,83f20a32-9f5d-4a68-8995-549e57554da2,1.57,false,false,near_mint,en,USD
Curator of Destinies,FDN,Foundations,34,normal,rare,1,100908,9ff79da7-c3f7-4541-87a0-503544c699b5,0.12,false,false,near_mint,en,USD
"Loot, Exuberant Explorer",FDN,Foundations,106,normal,rare,1,100131,09980ce6-425b-4e03-94d0-0f02043cb361,4.8,false,false,near_mint,en,USD
Micromancer,FDN,Foundations,158,normal,uncommon,1,101274,e6af54ea-b57a-4e50-8e46-1747cca14430,0.07,false,false,near_mint,en,USD
"Ruby, Daring Tracker",FDN,Foundations,245,normal,uncommon,1,101405,fe3e7dd2-b66d-4218-9fde-f84bec26b7bf,0.05,false,false,near_mint,en,USD
Mild-Mannered Librarian,FDN,Foundations,228,normal,uncommon,1,100515,5389663a-fe25-41b9-8c92-1f4d7721ffc2,0.03,false,false,near_mint,en,USD
Guarded Heir,FDN,Foundations,14,normal,uncommon,1,100505,525ba5c7-3ce5-4e52-b8b5-96c9040a6738,0.05,false,false,near_mint,en,USD
Garruk's Uprising,FDN,Foundations,220,normal,uncommon,1,100447,4805c303-e73b-443b-a09f-49d2c2c88bb5,0.25,false,false,near_mint,en,USD
Vampire Nighthawk,FDN,Foundations,186,normal,uncommon,1,101474,0a1934ab-3171-4fc6-8033-ad998899ba73,0.12,false,false,near_mint,en,USD
Soulstone Sanctuary,FDN,Foundations,133,normal,rare,1,100596,642553a7-6d0f-483d-a873-3a703786db42,1.9,false,false,near_mint,en,USD
"Balmor, Battlemage Captain",FDN,Foundations,237,normal,uncommon,1,100142,0b45ab13-9bb6-48af-8b37-d97b25801ac8,0.07,false,false,near_mint,en,USD
Adventuring Gear,FDN,Foundations,249,normal,uncommon,1,100358,361f9b99-5b5d-40da-b4b9-5ad90f6280ee,0.06,false,false,near_mint,en,USD
Grappling Kraken,FDN,Foundations,39,normal,uncommon,1,101165,d1f5cab3-3fc0-448d-8252-cd55abf5b596,0.12,false,false,near_mint,en,USD
Quakestrider Ceratops,FDN,Foundations,110,normal,uncommon,1,100120,067f72c2-ead6-4879-bc9d-696c9f87c0b2,0.11,false,false,near_mint,en,USD
Genesis Wave,FDN,Foundations,221,normal,rare,1,101177,d46f7ddb-f986-4f1f-b096-ae1a02d0bdc8,0.29,false,false,near_mint,en,USD
"Lathril, Blade of the Elves",FDN,Foundations,242,normal,rare,1,100811,8d4e5480-a287-4a25-b855-a26dae555b1c,0.25,false,false,near_mint,en,USD
Elvish Archdruid,FDN,Foundations,219,normal,rare,1,100341,341da856-7414-403b-b2e3-4bebd58a5aa4,0.4,false,false,near_mint,en,USD
Imprisoned in the Moon,FDN,Foundations,156,normal,uncommon,1,101313,ee28e147-6622-4399-a314-c14a5c912dd0,0.18,false,false,near_mint,en,USD
Inspiring Call,FDN,Foundations,226,normal,uncommon,1,100400,3e241642-5172-4437-b694-f6aa159d5cd9,0.15,false,false,near_mint,en,USD
Essence Scatter,FDN,Foundations,153,normal,uncommon,1,101226,dd05c850-f91e-4ffb-b4cc-8418d49dad90,0.04,false,false,near_mint,en,USD
Exemplar of Light,FDN,Foundations,11,normal,rare,1,100832,920c8fc5-fdd2-446a-a676-5c363f96928f,2.82,false,false,near_mint,en,USD
Meteor Golem,FDN,Foundations,256,normal,uncommon,1,101167,d291ea1e-36bc-46b3-b3ae-084fa0ba69eb,0.05,false,false,near_mint,en,USD
Swiftfoot Boots,FDN,Foundations,258,normal,uncommon,1,100414,41040541-b129-4cf4-9411-09b1d9d32c19,1.19,false,false,near_mint,en,USD
Brazen Scourge,FDN,Foundations,191,normal,uncommon,1,101616,eb84b86c-3276-4fc1-a09d-47de388cb729,0.02,false,false,near_mint,en,USD
Sylvan Scavenging,FDN,Foundations,113,normal,rare,1,101100,c35b683c-d3b2-46a1-876a-81b34e8ba2fc,0.25,false,false,near_mint,en,USD
Claws Out,FDN,Foundations,6,normal,uncommon,1,100429,4396049c-b976-4b7f-8ecd-564e24ebd631,0.1,false,false,near_mint,en,USD
Snakeskin Veil,FDN,Foundations,233,normal,uncommon,1,100645,6cc4c21d-9bdc-4490-9203-17f51db0ddd1,0.08,false,false,near_mint,en,USD
Skyship Buccaneer,FDN,Foundations,50,normal,uncommon,1,100587,62958fc3-55dc-4b97-a070-490d6ed27820,0.02,false,false,near_mint,en,USD
Arcane Epiphany,FDN,Foundations,29,normal,uncommon,1,100116,06431793-5dfe-4cbf-990b-4bcc960d1f31,0.03,false,false,near_mint,en,USD
Brass's Bounty,FDN,Foundations,190,normal,rare,1,100610,65fe7127-b0ec-400f-97f1-6e17ab8e319d,0.14,false,false,near_mint,en,USD
Fiendish Panda,FDN,Foundations,120,normal,uncommon,1,100483,4e434d74-cad0-45f5-bc8d-f34aa5e1d879,0.09,false,false,near_mint,en,USD
Frenzied Goblin,FDN,Foundations,199,normal,uncommon,1,101602,d5592573-2889-40b1-b1d5-c2802482549a,0.03,false,false,near_mint,en,USD
Lunar Insight,FDN,Foundations,46,normal,rare,1,100958,a9a159f6-fecf-4bdd-b2f8-a9665a5cc32d,0.25,false,false,near_mint,en,USD
Twinblade Blessing,FDN,Foundations,26,normal,uncommon,1,101310,ecf01cbe-9fcb-4f35-bc6b-2280620b06ff,0.1,false,false,near_mint,en,USD
"Tatyova, Benthic Druid",FDN,Foundations,247,normal,uncommon,1,101301,eabc978a-0666-472d-bdc6-d4b29d29eca4,0.06,false,false,near_mint,en,USD
Dragon Trainer,FDN,Foundations,84,normal,uncommon,1,100830,91bd75a1-cb54-4e38-9ce1-e8f32a73c6eb,0.04,false,false,near_mint,en,USD
Raise the Past,FDN,Foundations,22,normal,rare,1,100641,6c6be129-56da-4fe7-a6bd-6a1d402c09e1,2.27,false,false,near_mint,en,USD
Divine Resilience,FDN,Foundations,10,normal,uncommon,1,101347,f3a08245-a535-4d24-b8c0-78759bb9c4b0,0.11,false,false,near_mint,en,USD
Bulk Up,FDN,Foundations,80,normal,uncommon,1,100857,977dcc50-da10-4281-b522-9240c1204f5d,0.2,false,false,near_mint,en,USD
Diregraf Ghoul,FDN,Foundations,171,normal,uncommon,1,100439,4682012c-d7e0-4257-b538-3de497507464,0.03,false,false,near_mint,en,USD
Drake Hatcher,FDN,Foundations,35,normal,rare,1,101071,bcaf4196-6bf3-47fa-b5c7-0e77f45cf820,0.12,false,false,near_mint,en,USD
Youthful Valkyrie,FDN,Foundations,149,normal,uncommon,1,100894,9d795f79-c3a5-4ea1-a5cf-1ce73d6837b6,0.14,false,false,near_mint,en,USD
Seeker's Folly,FDN,Foundations,69,normal,uncommon,1,101067,bc359da6-8b7f-45ec-b530-ce159fc35953,0.06,false,false,near_mint,en,USD
Heroic Reinforcements,FDN,Foundations,241,normal,uncommon,1,100631,6a05e8d5-c2ad-489a-888d-22622886b620,0.04,false,false,near_mint,en,USD
Inspiration from Beyond,FDN,Foundations,43,normal,uncommon,1,101033,b636fe95-664f-4fb1-aab9-28856edeccd6,0.04,false,false,near_mint,en,USD
"Dwynen, Gilt-Leaf Daen",FDN,Foundations,217,normal,uncommon,1,100086,01c00d7b-7fac-4f8c-a1ea-de2cf4d06627,0.14,false,false,near_mint,en,USD
Twinflame Tyrant,FDN,Foundations,97,normal,mythic,1,100228,1eb34f51-0bd2-43c3-af95-2ce8dabcc7bb,17.77,false,false,near_mint,en,USD
Sun-Blessed Healer,FDN,Foundations,25,normal,uncommon,1,100332,323d029e-9a88-4188-b3a4-38ef32cffc9f,0.09,false,false,near_mint,en,USD
Seismic Rupture,FDN,Foundations,205,normal,uncommon,1,100268,2519a51a-26a0-4884-9ba8-9db135c9ee49,0.02,false,false,near_mint,en,USD
Slumbering Cerberus,FDN,Foundations,94,normal,uncommon,1,100892,9d06faa8-201d-45db-b398-ad56f7b01848,0.03,false,false,near_mint,en,USD
Tragic Banshee,FDN,Foundations,73,normal,uncommon,1,100324,30df3e33-2f17-4067-99f1-5db6b0f41fd4,0.03,false,false,near_mint,en,USD
Stromkirk Bloodthief,FDN,Foundations,185,normal,uncommon,1,97176,485d6a5a-2054-47d5-91b8-71ce308ed4dc,0.04,false,false,near_mint,en,USD
Blanchwood Armor,FDN,Foundations,213,normal,uncommon,1,100237,1fd7ec1a-dafa-42ca-bc25-f6848fb03f60,0.07,false,false,near_mint,en,USD
Spectral Sailor,FDN,Foundations,164,normal,uncommon,1,100100,03a49535-c5f3-4a6f-b333-7ac7bffdc9ae,0.06,false,false,near_mint,en,USD
Extravagant Replication,FDN,Foundations,154,normal,rare,1,100634,6a41dfae-bc7e-4105-8f7e-fd0109197ad8,0.43,false,false,near_mint,en,USD
Electroduplicate,FDN,Foundations,85,normal,rare,1,100976,abb06b1c-5d4e-49b9-9c4a-e60ab656a257,0.3,false,false,near_mint,en,USD
Angel of Finality,FDN,Foundations,136,normal,uncommon,1,101057,baaabd52-3aa9-4e2f-9369-d4db8b405ba8,0.07,false,false,near_mint,en,USD
Battlesong Berserker,FDN,Foundations,78,normal,uncommon,1,100917,a1f8b199-5d62-485f-b1c3-b30aa550595b,0.03,false,false,near_mint,en,USD
Swiftblade Vindicator,FDN,Foundations,246,normal,rare,1,101372,f94618ec-000c-4371-b925-05ff82bfe221,0.12,false,false,near_mint,en,USD
Dauntless Veteran,FDN,Foundations,8,normal,uncommon,1,100704,7a136f26-ac66-407f-b389-357222d2c4a2,0.05,false,false,near_mint,en,USD
Hero's Downfall,FDN,Foundations,175,normal,uncommon,1,97185,ad2c01d9-8f54-46c0-9dc9-d4d4764ce1c9,0.1,false,false,near_mint,en,USD
Resolute Reinforcements,FDN,Foundations,145,normal,uncommon,1,100841,940f3989-77cc-49a9-92e0-095a75d80f0f,0.09,false,false,near_mint,en,USD
Zombify,FDN,Foundations,187,normal,uncommon,1,101225,dc798e6f-13c4-457c-b052-b7b65bc83cfe,0.09,false,false,near_mint,en,USD
Fiery Annihilation,FDN,Foundations,86,normal,uncommon,1,100523,54fe00aa-d284-48f9-b5a2-1bd4c5fa8e58,0.07,false,false,near_mint,en,USD
Clinquant Skymage,FDN,Foundations,33,normal,uncommon,1,100357,36012810-0e83-4640-8ba7-7262229f1b84,0.05,false,false,near_mint,en,USD
Consuming Aberration,FDN,Foundations,238,normal,rare,1,101066,bc2b28fd-66b0-457c-80ea-7caed2cc7926,0.16,false,false,near_mint,en,USD
Fishing Pole,FDN,Foundations,128,normal,uncommon,1,101128,c95ab836-3277-4223-9aaa-ef2c77256b65,0.07,false,false,near_mint,en,USD
Felling Blow,FDN,Foundations,105,normal,uncommon,1,100854,96948ae3-b15d-4d6d-aa73-9f52084cd903,0.05,false,false,near_mint,en,USD
Abrade,FDN,Foundations,188,normal,uncommon,1,100522,548947dc-a5ca-43b5-9531-bcef20fa4ae5,0.09,false,false,near_mint,en,USD
Spinner of Souls,FDN,Foundations,112,normal,rare,1,101358,f50a8dec-b079-4192-9098-6cdc1026c693,0.66,false,false,near_mint,en,USD
Vampire Gourmand,FDN,Foundations,74,normal,uncommon,1,100827,917514c0-9cd5-4b97-85b9-c4f753560ad4,0.09,false,false,near_mint,en,USD
Needletooth Pack,FDN,Foundations,108,normal,uncommon,1,100868,993c1679-e02b-44f2-b34e-12fd6b5142e9,0.05,false,false,near_mint,en,USD
Burnished Hart,FDN,Foundations,250,normal,uncommon,1,100609,65ebbff0-fbe6-4310-a33f-e00bb2534979,0.06,false,false,near_mint,en,USD
Arbiter of Woe,FDN,Foundations,55,normal,uncommon,1,101008,b2496c4a-df03-4583-bd76-f98ed5cb61ee,0.06,false,false,near_mint,en,USD
Good-Fortune Unicorn,FDN,Foundations,240,normal,uncommon,1,101300,eabbe163-2b15-42e3-89ce-7363e6250d3a,0.1,false,false,near_mint,en,USD
Reassembling Skeleton,FDN,Foundations,182,normal,uncommon,1,100291,28e84b1b-1c05-4e1b-93b8-9cc2ca73509d,0.08,false,false,near_mint,en,USD
Reclamation Sage,FDN,Foundations,231,normal,uncommon,1,100197,1918ea65-ab7f-4d40-97fd-a656c892a2a1,0.14,false,false,near_mint,en,USD
Leyline Axe,FDN,Foundations,129,normal,rare,1,101052,b9c03336-a321-4c06-94d1-809f328fabd8,3.17,false,false,near_mint,en,USD
An Offer You Can't Refuse,FDN,Foundations,160,normal,uncommon,1,100948,a829747f-cf9b-4d81-ba66-9f0630ed4565,0.99,false,false,near_mint,en,USD
Goblin Negotiation,FDN,Foundations,88,normal,uncommon,1,101335,f2016585-e26c-4d13-b09f-af6383c192f7,0.09,false,false,near_mint,en,USD
Empyrean Eagle,FDN,Foundations,239,normal,uncommon,1,100533,577e99a7-4a55-4314-8f08-2ae0c33b85c7,0.08,false,false,near_mint,en,USD
Solemn Simulacrum,FDN,Foundations,257,normal,rare,1,100514,5383f45e-3da2-40fb-beee-801448bbb60f,0.3,false,false,near_mint,en,USD
Crystal Barricade,FDN,Foundations,7,normal,rare,1,100822,905d3e02-ea06-45e7-9adb-c8e7583323a2,1.24,false,false,near_mint,en,USD
Hidetsugu's Second Rite,FDN,Foundations,202,normal,uncommon,1,100577,609421da-8d89-4365-b18b-778832d91482,0.04,false,false,near_mint,en,USD
Affectionate Indrik,FDN,Foundations,211,normal,uncommon,1,100310,2da8347d-06a4-46e0-a55e-cc2da4660263,0.02,false,false,near_mint,en,USD
Infernal Vessel,FDN,Foundations,63,normal,uncommon,1,101560,877b6330-2d0b-4f2f-a848-f10b06fb4ef5,0.06,false,false,near_mint,en,USD
"Zimone, Paradox Sculptor",FDN,Foundations,126,normal,mythic,1,100241,20ccbfdd-ddae-440c-9bc0-38b15a56fdd1,2.13,false,false,near_mint,en,USD
High-Society Hunter,FDN,Foundations,61,normal,rare,1,100501,51da4a4b-ea12-4169-a7cf-eb4427f13e84,0.64,false,false,near_mint,en,USD
Heraldic Banner,FDN,Foundations,254,normal,uncommon,1,100678,743ea709-dbb3-4db8-a2ce-544f47eb6339,0.24,false,false,near_mint,en,USD
Wardens of the Cycle,FDN,Foundations,125,normal,uncommon,1,100761,83ea9b2c-5723-4eff-88ac-6669975939e3,0.07,false,false,near_mint,en,USD
Preposterous Proportions,FDN,Foundations,109,normal,rare,1,100983,acb65189-60e4-42e0-9fb1-da6b716b91d7,0.94,false,false,near_mint,en,USD
Savannah Lions,FDN,Foundations,146,normal,uncommon,1,97184,9c9ac1bc-cdf3-4fa6-8319-a7ea164e9e47,0.04,false,false,near_mint,en,USD
Secluded Courtyard,FDN,Foundations,267,normal,uncommon,1,101161,d13373d2-139b-48c7-a8c9-828cefc4f150,0.12,false,false,near_mint,en,USD
Ajani's Pridemate,FDN,Foundations,135,normal,uncommon,1,100255,222c1a68-e34c-4103-b1be-17d4ceaef6ce,0.06,false,false,near_mint,en,USD
"Arahbo, the First Fang",FDN,Foundations,2,normal,rare,1,100503,524a5d93-26ed-436d-a437-dc9460acce98,1.0,false,false,near_mint,en,USD
Authority of the Consuls,FDN,Foundations,137,normal,rare,1,100425,42ce2d7f-5924-47c0-b5ed-dacf9f9617a0,5.3,false,false,near_mint,en,USD
Nine-Lives Familiar,FDN,Foundations,321,normal,rare,1,100060,6cc1623f-370d-42b5-88a2-039f31e9be0b,2.67,false,false,near_mint,en,USD
Ajani's Pridemate,FDN,Foundations,293,foil,uncommon,1,101180,d4cfb9bc-4273-4e5f-a7ac-2006a8345a4e,0.38,false,false,near_mint,en,USD
Helpful Hunter,FDN,Foundations,16,foil,common,1,97172,1b9a0e91-80b5-428f-8f08-931d0631be14,1.61,false,false,near_mint,en,USD
Felidar Savior,FDN,Foundations,12,foil,common,1,97191,cd092b14-d72f-4de0-8f19-1338661b9e3b,0.05,false,false,near_mint,en,USD
Thrill of Possibility,FDN,Foundations,210,normal,common,3,101561,882b348c-076b-41d8-b505-063480636669,0.03,false,false,near_mint,en,USD
Lightshell Duo,FDN,Foundations,157,normal,common,7,101063,bb75315c-ea8f-4eb0-899e-c73ef75fc396,0.04,false,false,near_mint,en,USD
Mischievous Pup,FDN,Foundations,144,normal,uncommon,2,100670,7214d984-6400-44d7-bde6-57d96b606e78,0.04,false,false,near_mint,en,USD
Swiftwater Cliffs,FDN,Foundations,268,normal,common,3,101389,fb88667d-7088-4889-960f-317486ebe856,0.03,false,false,near_mint,en,USD
Hare Apparent,FDN,Foundations,15,normal,common,3,100907,9fc6f0e9-eb5f-4bc0-b3d7-756644b66d12,3.62,false,false,near_mint,en,USD
Dazzling Angel,FDN,Foundations,9,normal,common,3,101468,027dc444-e544-4693-8653-3dcdda530162,0.1,false,false,near_mint,en,USD
Bigfin Bouncer,FDN,Foundations,31,normal,common,3,100882,9b1d5b76-b07e-45c6-800d-4cfce085164f,0.02,false,false,near_mint,en,USD
Ambush Wolf,FDN,Foundations,98,normal,common,4,101492,2903832c-318e-42ab-bf58-c682ec2f7afd,0.05,false,false,near_mint,en,USD
Healer's Hawk,FDN,Foundations,142,normal,common,3,101595,cc8e4563-04bb-46b5-835e-64ba11c0e972,0.09,false,false,near_mint,en,USD
Rune-Sealed Wall,FDN,Foundations,49,normal,uncommon,2,101212,da0f147b-95ed-4f32-9b46-6a633ae31976,0.15,false,false,near_mint,en,USD
Pilfer,FDN,Foundations,181,normal,common,4,101564,8c7c88b5-6d09-453b-b9c1-7dcbba8f1080,0.03,false,false,near_mint,en,USD
Stab,FDN,Foundations,71,normal,common,3,101538,6859a5ba-1c1c-4631-bba8-f9900b827178,0.04,false,false,near_mint,en,USD
Heartfire Immolator,FDN,Foundations,201,normal,uncommon,2,100390,3ca38f4d-01f5-4a02-9000-01261a440dbf,0.03,false,false,near_mint,en,USD
Marauding Blight-Priest,FDN,Foundations,178,normal,common,3,101528,5f70dafc-c638-4ec0-ab5b-62998f752720,0.12,false,false,near_mint,en,USD
Broken Wings,FDN,Foundations,214,normal,common,3,100584,61f9cbeb-cc9c-4562-be65-8a77053faefe,0.02,false,false,near_mint,en,USD
Firespitter Whelp,FDN,Foundations,197,normal,uncommon,2,100463,4b3a4c7d-3126-4bde-9dca-cb6a1e2f37c9,0.15,false,false,near_mint,en,USD
Make Your Move,FDN,Foundations,143,normal,common,3,101546,7368f861-3288-4645-90a7-ca35d6da3721,0.03,false,false,near_mint,en,USD
Treetop Snarespinner,FDN,Foundations,114,normal,common,4,101562,88e68fa3-159d-49a6-8ac6-afc9bd6f1718,0.06,false,false,near_mint,en,USD
Vengeful Bloodwitch,FDN,Foundations,76,normal,uncommon,2,97189,bd0c12dd-f138-45c0-9614-d83a1d8e8399,0.17,false,false,near_mint,en,USD
Evolving Wilds,FDN,Foundations,262,normal,common,4,100376,3a0b9356-5b91-4542-8802-f0f7275238e1,0.06,false,false,near_mint,en,USD
Bite Down,FDN,Foundations,212,normal,common,3,101625,f8d70b3b-f6f9-4b3c-ad70-0ce369e812b5,0.04,false,false,near_mint,en,USD
Elfsworn Giant,FDN,Foundations,103,normal,common,3,100497,5128a5be-ffa6-4998-8488-872d80b24cb2,0.06,false,false,near_mint,en,USD
Apothecary Stomper,FDN,Foundations,99,normal,common,3,101537,680b7b0c-0e1b-46ce-9917-9fc6e05aa148,0.05,false,false,near_mint,en,USD
Axgard Cavalry,FDN,Foundations,189,normal,common,3,101631,fe3cc41a-adae-4c9b-b4d3-03f3ca862fed,0.03,false,false,near_mint,en,USD
Wary Thespian,FDN,Foundations,235,normal,common,3,101574,a3d62d04-0974-4cb5-9a35-5e996c6456e2,0.01,false,false,near_mint,en,USD
Fleeting Flight,FDN,Foundations,13,normal,common,3,101513,55139100-9342-41fd-b10a-8e9932e605d4,0.04,false,false,near_mint,en,USD
Quick-Draw Katana,FDN,Foundations,130,normal,common,3,101540,69beec98-c89c-4673-953c-8b3ef3d81560,0.07,false,false,near_mint,en,USD
Goblin Surprise,FDN,Foundations,200,normal,common,3,101512,527dd5d4-5f72-40bb-8a9d-1f5ac3f81e2e,0.05,false,false,near_mint,en,USD
Sower of Chaos,FDN,Foundations,95,normal,common,4,101556,7ff50606-491c-4946-8d03-719b01cfad77,0.01,false,false,near_mint,en,USD
Involuntary Employment,FDN,Foundations,203,normal,common,4,101622,f3ad3d62-2f24-4562-b3fa-809213dbc4a4,0.06,false,false,near_mint,en,USD
Burst Lightning,FDN,Foundations,192,normal,common,3,100994,aec5d380-d354-4750-931a-6c91853e2edc,0.08,false,false,near_mint,en,USD
Banishing Light,FDN,Foundations,138,normal,common,4,101613,e38dc3b3-1629-491b-8afd-0e7a9a857713,0.03,false,false,near_mint,en,USD
Blossoming Sands,FDN,Foundations,260,normal,common,2,100364,37676ed8-588c-4bca-8065-874b74d84807,0.05,false,false,near_mint,en,USD
Felidar Savior,FDN,Foundations,12,normal,common,3,97191,cd092b14-d72f-4de0-8f19-1338661b9e3b,0.02,false,false,near_mint,en,USD
Revenge of the Rats,FDN,Foundations,67,normal,uncommon,2,100232,1f463c55-39a0-4f2f-aae3-0c5540bde5b7,0.12,false,false,near_mint,en,USD
Armasaur Guide,FDN,Foundations,3,normal,common,3,101591,c80fc380-0499-4499-8a60-c43844c02c9b,0.03,false,false,near_mint,en,USD
Campus Guide,FDN,Foundations,251,normal,common,3,101504,43c59814-3167-4b05-bb85-6c736f3956a4,0.02,false,false,near_mint,en,USD
Dreadwing Scavenger,FDN,Foundations,118,normal,uncommon,2,101252,e24d838b-ab48-410a-9a50-dbfea5da089b,0.04,false,false,near_mint,en,USD
Gleaming Barrier,FDN,Foundations,252,normal,common,3,101479,1b49b009-e6f2-494a-9235-f5c25c2d70a9,0.06,false,false,near_mint,en,USD
Scoured Barrens,FDN,Foundations,266,normal,common,2,100277,2632a4b2-9ca6-4b67-9a99-14f52ad3dc41,0.07,false,false,near_mint,en,USD
Erudite Wizard,FDN,Foundations,37,normal,common,3,100835,9273c417-0fcd-4273-b24e-afff76336d0c,0.01,false,false,near_mint,en,USD
Gorehorn Raider,FDN,Foundations,89,normal,common,3,101551,78ce6c40-3452-4aa0-a45b-dbfd70f8d220,0.02,false,false,near_mint,en,USD
Cackling Prowler,FDN,Foundations,101,normal,common,3,101481,1bd8e971-c075-4203-8d83-c28f22d4f9b9,0.03,false,false,near_mint,en,USD
Burglar Rat,FDN,Foundations,170,normal,common,4,101608,de1c8758-ce3d-49cf-8173-c0eb46f5e7bc,0.05,false,false,near_mint,en,USD
Mocking Sprite,FDN,Foundations,159,normal,common,3,101624,f6792f63-b651-497d-8aa5-cddf4cedeca8,0.03,false,false,near_mint,en,USD
Cathar Commando,FDN,Foundations,139,normal,common,3,100204,19cf024d-edb6-4a79-8676-73f8db0cdf1f,0.06,false,false,near_mint,en,USD
Hungry Ghoul,FDN,Foundations,62,normal,common,3,100701,790f9433-7565-4f7f-88e8-8af762ea0296,0.04,false,false,near_mint,en,USD
Vampire Soulcaller,FDN,Foundations,75,normal,common,3,101495,2d076293-3b45-4878-8f67-978927cc1f68,0.04,false,false,near_mint,en,USD
Exsanguinate,FDN,Foundations,173,normal,uncommon,1,101330,f11d7311-4066-4a5d-ba28-9857fa707a0b,0.4,false,false,near_mint,en,USD
Fanatical Firebrand,FDN,Foundations,195,normal,common,3,101598,d1296316-7781-4e98-95e6-7020648be6a5,0.03,false,false,near_mint,en,USD
Sanguine Syphoner,FDN,Foundations,68,normal,common,4,101582,b1daf5bb-c8e9-4e79-a532-ca92a9a885cd,0.07,false,false,near_mint,en,USD
Boltwave,FDN,Foundations,79,normal,uncommon,2,100810,8d1ec351-5e70-4eb2-b590-6bff94ef8178,4.08,false,false,near_mint,en,USD
Nessian Hornbeetle,FDN,Foundations,229,normal,uncommon,2,100395,3d4d93de-85c6-4653-8ddd-d8bf21516d44,0.05,false,false,near_mint,en,USD
Goldvein Pick,FDN,Foundations,253,normal,common,3,101572,a241317d-2277-467e-a8f9-aa71c944e244,0.06,false,false,near_mint,en,USD
Icewind Elemental,FDN,Foundations,42,normal,common,3,101629,fd0eba76-3829-408b-828f-0b223c884728,0.05,false,false,near_mint,en,USD
Fleeting Distraction,FDN,Foundations,155,normal,common,3,101587,c0b86a7b-4912-43a7-ab89-c3432385baa1,0.02,false,false,near_mint,en,USD
Faebloom Trick,FDN,Foundations,38,normal,uncommon,2,100148,0c3bee8f-f5be-4404-a696-c902637799c3,0.17,false,false,near_mint,en,USD
Brineborn Cutthroat,FDN,Foundations,152,normal,uncommon,2,100986,acf7aafb-931f-49e5-8691-eab8cb34b05e,0.02,false,false,near_mint,en,USD
Gutless Plunderer,FDN,Foundations,60,normal,common,3,101567,909d7778-c7f8-4fa4-89f2-8b32e86e96e4,0.05,false,false,near_mint,en,USD
Thornwood Falls,FDN,Foundations,269,normal,common,2,100424,42799f51-0f8c-444b-974e-dae281a5c697,0.05,false,false,near_mint,en,USD
Tranquil Cove,FDN,Foundations,270,normal,common,2,100719,7c9cabca-5bcc-4b97-b2ac-a345ad3ee43c,0.06,false,false,near_mint,en,USD
Fake Your Own Death,FDN,Foundations,174,normal,common,3,101539,693635a6-df50-44c5-9598-0c79b45d4df4,0.05,false,false,near_mint,en,USD
Crypt Feaster,FDN,Foundations,59,normal,common,4,100382,3b072811-998a-4a71-b59c-6afecc0dc4b6,0.03,false,false,near_mint,en,USD
Incinerating Blast,FDN,Foundations,90,normal,common,3,101603,d58e20ab-c5ca-4295-884d-78efdaa83243,0.03,false,false,near_mint,en,USD
Refute,FDN,Foundations,48,normal,common,3,100368,38806934-dd9c-4ad4-a59c-a16dce03a14a,0.06,false,false,near_mint,en,USD
Tolarian Terror,FDN,Foundations,167,normal,common,3,100270,2569d4f3-55ed-4f99-9592-34c7df0aab72,0.09,false,false,near_mint,en,USD
Joust Through,FDN,Foundations,19,normal,uncommon,2,100767,846adb38-f9bb-4fed-b8ed-36ec7885f989,0.05,false,false,near_mint,en,USD
Bake into a Pie,FDN,Foundations,169,normal,common,3,101494,2ab0e660-86a3-4b92-82fa-77dcb5db947d,0.03,false,false,near_mint,en,USD
Soul-Shackled Zombie,FDN,Foundations,70,normal,common,4,101609,deea5690-6eb2-4353-b917-cbbf840e4e71,0.04,false,false,near_mint,en,USD
Perforating Artist,FDN,Foundations,124,normal,uncommon,2,100674,72980409-53f0-43c1-965e-06f22e7bb608,0.1,false,false,near_mint,en,USD
Serra Angel,FDN,Foundations,147,normal,uncommon,2,100391,3cee9303-9d65-45a2-93d4-ef4aba59141b,0.05,false,false,near_mint,en,USD
Squad Rallier,FDN,Foundations,24,normal,common,3,101534,65e1ee86-6f08-4aa0-bf63-ae12028ef080,0.04,false,false,near_mint,en,USD
Elementalist Adept,FDN,Foundations,36,normal,common,3,101605,d9768cc6-8f53-4922-ae32-376a2f32d719,0.02,false,false,near_mint,en,USD
Elvish Regrower,FDN,Foundations,104,normal,uncommon,2,100278,2694e3cd-26ed-4a10-ae55-fb84d7800253,0.09,false,false,near_mint,en,USD
Infestation Sage,FDN,Foundations,64,normal,common,3,101601,d40c73de-7a5f-46f2-a70b-449bc8ecfe24,0.07,false,false,near_mint,en,USD
Inspiring Paladin,FDN,Foundations,18,normal,common,3,101472,0763be06-25b2-4d6b-ab33-a1af85aeb443,0.02,false,false,near_mint,en,USD
Luminous Rebuke,FDN,Foundations,20,normal,common,3,101529,621839e1-2756-4cdc-a25c-5f76ea98dd87,0.07,false,false,near_mint,en,USD
Gnarlid Colony,FDN,Foundations,224,normal,common,3,101508,47565d10-96bf-4fb0-820f-f20a44a76b6f,0.02,false,false,near_mint,en,USD
Sure Strike,FDN,Foundations,209,normal,common,3,101525,5de6a1e4-5c66-43e6-9f2a-2635bdab03f6,0.03,false,false,near_mint,en,USD
Helpful Hunter,FDN,Foundations,16,normal,common,3,97172,1b9a0e91-80b5-428f-8f08-931d0631be14,0.14,false,false,near_mint,en,USD
Goblin Boarders,FDN,Foundations,87,normal,common,3,101506,4409a063-bf2a-4a49-803e-3ce6bd474353,0.04,false,false,near_mint,en,USD
Macabre Waltz,FDN,Foundations,177,normal,common,3,101509,4d1f3c84-89ba-4426-a80b-d524f172c912,0.03,false,false,near_mint,en,USD
Grow from the Ashes,FDN,Foundations,225,normal,common,3,101502,42525f8a-aee7-4811-8f05-471b559c2c4a,0.03,false,false,near_mint,en,USD
Stroke of Midnight,FDN,Foundations,148,normal,uncommon,2,100970,ab135925-d924-456d-851a-6ccdaaf27271,0.17,false,false,near_mint,en,USD
Eaten Alive,FDN,Foundations,172,normal,common,3,100216,1c4f7b20-b2a8-498c-8c36-dc296863b0b9,0.02,false,false,near_mint,en,USD
Aetherize,FDN,Foundations,151,normal,uncommon,2,100225,1e5530fc-0291-4a17-b048-c5d24e6f51d8,0.17,false,false,near_mint,en,USD
Giant Growth,FDN,Foundations,223,normal,common,4,101073,bd0bf74e-14c1-4428-88d8-2181a080b5d0,0.03,false,false,near_mint,en,USD
Billowing Shriekmass,FDN,Foundations,56,normal,uncommon,2,100711,7b3587a9-0667-4d53-807b-c437bcb1d7b3,0.02,false,false,near_mint,en,USD
Think Twice,FDN,Foundations,165,normal,common,4,101202,d88faaa1-eb41-40f7-991c-5c06e1138f3d,0.05,false,false,near_mint,en,USD
Beast-Kin Ranger,FDN,Foundations,100,normal,common,3,100082,0102e0be-5783-4825-9489-713b1b1df0b2,0.05,false,false,near_mint,en,USD
Spitfire Lagac,FDN,Foundations,208,normal,common,4,101496,30f600cd-b696-4f49-9cbc-5a33aa43d04c,0.02,false,false,near_mint,en,USD
Aegis Turtle,FDN,Foundations,150,normal,common,3,101590,c7f2014a-fbc9-447c-a440-e06d01066bb9,0.08,false,false,near_mint,en,USD
Firebrand Archer,FDN,Foundations,196,normal,common,3,101630,fe0312f1-4c98-4b7f-8a34-0059ea80edef,0.05,false,false,near_mint,en,USD
Shivan Dragon,FDN,Foundations,206,normal,uncommon,2,100236,1fcff1e0-2745-448d-a27b-e31719e222e9,0.05,false,false,near_mint,en,USD
Cephalid Inkmage,FDN,Foundations,32,normal,uncommon,2,101040,b7e47680-18c7-4ffb-aac4-c5db6e7095ba,0.05,false,false,near_mint,en,USD
Prideful Parent,FDN,Foundations,21,normal,common,3,97188,b742117a-8a72-43b9-b05d-274829d138a2,0.04,false,false,near_mint,en,USD
Uncharted Voyage,FDN,Foundations,53,normal,common,4,101611,e0846820-e595-4743-8a28-29c57d728677,0.01,false,false,near_mint,en,USD
Eager Trufflesnout,FDN,Foundations,102,normal,uncommon,2,100940,a6e8433d-eb2a-43d1-b59b-7d70ff97c8e7,0.04,false,false,near_mint,en,USD
Juggernaut,FDN,Foundations,255,normal,uncommon,2,101351,f4468fff-cd6f-428c-b7a0-ff89f5bbea2e,0.07,false,false,near_mint,en,USD
Llanowar Elves,FDN,Foundations,227,normal,common,3,95583,6a0b230b-d391-4998-a3f7-7b158a0ec2cd,0.15,false,false,near_mint,en,USD
Overrun,FDN,Foundations,230,normal,uncommon,2,100220,1d8e9cbb-8bf4-4a48-a58e-79deb3abdf7f,0.14,false,false,near_mint,en,USD
Crackling Cyclops,FDN,Foundations,83,normal,common,3,101541,6e5b899a-52f7-471b-ad50-4fa6566758fd,0.01,false,false,near_mint,en,USD
Mischievous Mystic,FDN,Foundations,47,normal,uncommon,2,100242,20d89cec-528b-4b2a-87db-e11ce0000622,0.14,false,false,near_mint,en,USD
Witness Protection,FDN,Foundations,168,normal,common,3,101621,f231e981-0069-43ce-ac1c-c85ced613e93,0.08,false,false,near_mint,en,USD
Dwynen's Elite,FDN,Foundations,218,normal,common,3,100800,89d94c28-ea2e-4a3d-935f-6b2d9f2efc7a,0.05,false,false,near_mint,en,USD
Bushwhack,FDN,Foundations,215,normal,common,3,101469,03ebdb36-55e0-49dd-a514-785fbeb4ae19,0.1,false,false,near_mint,en,USD
Run Away Together,FDN,Foundations,162,normal,common,3,101614,e598eb7b-10dc-49e6-ac60-2fefa987173e,0.05,false,false,near_mint,en,USD
Strongbox Raider,FDN,Foundations,96,normal,uncommon,2,101006,b2223eb8-59f9-489b-a3f3-b6496218cb79,0.02,false,false,near_mint,en,USD
Vanguard Seraph,FDN,Foundations,28,normal,common,4,101503,4329c861-fc16-4a96-9c03-25af6ac2adc8,0.06,false,false,near_mint,en,USD
Self-Reflection,FDN,Foundations,163,normal,uncommon,2,101247,e1e6abc9-25b2-4d51-b519-2525079eab51,0.04,false,false,near_mint,en,USD
Strix Lookout,FDN,Foundations,52,normal,common,3,101627,fbd2422e-8e84-4c39-af29-3b4d38baee63,0.03,false,false,near_mint,en,USD
Cat Collector,FDN,Foundations,4,normal,uncommon,2,100507,526fe356-bff1-4211-9e88-bf913ac76b1d,0.1,false,false,near_mint,en,USD
Courageous Goblin,FDN,Foundations,82,normal,common,3,101566,8db6819c-666a-409d-85a5-b9ac34d8dd2f,0.03,false,false,near_mint,en,USD
"Ygra, Eater of All",BLB,Bloomburrow,241,normal,mythic,1,95825,b9ac7673-eae8-4c4b-889e-5025213a6151,11.58,false,false,near_mint,en,USD
Lifecreed Duo,BLB,Bloomburrow,20,normal,common,1,95968,ca543405-5e12-48a0-9a77-082ac9bcb2f2,0.06,false,false,near_mint,en,USD
Take Out the Trash,BLB,Bloomburrow,156,normal,common,1,95940,7a1c6f00-af4c-4d35-b682-6c0e759df9a5,0.04,false,false,near_mint,en,USD
Ravine Raider,BLB,Bloomburrow,106,normal,common,1,96370,874510be-7ecd-4eff-abad-b9594eb4821a,0.02,false,false,near_mint,en,USD
Longstalk Brawl,BLB,Bloomburrow,182,normal,common,1,95966,c7ef748c-b5e5-4e7d-bf2e-d3e6c08edb42,0.04,false,false,near_mint,en,USD
Valley Floodcaller,BLB,Bloomburrow,79,normal,rare,1,95876,90b12da0-f666-471d-95f5-15d8c9b31c92,2.65,false,false,near_mint,en,USD
Bandit's Talent,BLB,Bloomburrow,83,normal,uncommon,1,95917,485dc8d8-9e44-4a0f-9ff6-fa448e232290,0.47,false,false,near_mint,en,USD
Brambleguard Veteran,BLB,Bloomburrow,165,normal,uncommon,1,95880,bac9f6f8-6797-4580-9fc4-9a825872e017,0.09,false,false,near_mint,en,USD
Mouse Trapper,BLB,Bloomburrow,22,normal,uncommon,1,95948,8ba1bc5a-03e7-44ec-893e-44042cbc02ef,0.04,false,false,near_mint,en,USD
Bushy Bodyguard,BLB,Bloomburrow,166,normal,uncommon,1,95997,0de60cf7-fa82-4b6f-9f88-6590fba5c863,0.08,false,false,near_mint,en,USD
Valley Mightcaller,BLB,Bloomburrow,202,normal,rare,1,96057,7256451f-0122-452a-88e8-0fb0f6bea3f3,1.01,false,false,near_mint,en,USD
Druid of the Spade,BLB,Bloomburrow,170,normal,common,1,96054,6b485cf7-bad0-4824-9ba7-cb112ce4769f,0.02,false,false,near_mint,en,USD
Skyskipper Duo,BLB,Bloomburrow,71,normal,common,1,96476,d6844bad-ffbe-4c6e-b438-08562eccea52,0.04,false,false,near_mint,en,USD
Osteomancer Adept,BLB,Bloomburrow,103,normal,rare,1,95800,7d8238dd-858f-466c-96de-986bd66861d7,0.36,false,false,near_mint,en,USD
Tender Wildguide,BLB,Bloomburrow,196,normal,rare,1,95792,6b8bfa91-adb0-4596-8c16-d8bb64fdb26d,0.49,false,false,near_mint,en,USD
Huskburster Swarm,BLB,Bloomburrow,98,normal,uncommon,1,95978,ed2f61d7-4eb0-41c5-8a34-a0793c2abc51,0.13,false,false,near_mint,en,USD
Scrapshooter,BLB,Bloomburrow,191,normal,rare,1,96113,c42ab407-e72d-4c48-9a9e-2055b5e71c69,0.38,false,false,near_mint,en,USD
Scavenger's Talent,BLB,Bloomburrow,111,normal,rare,1,96084,9a52b7fe-87ae-425b-85fd-b24e6e0395f1,1.54,false,false,near_mint,en,USD
Valley Rotcaller,BLB,Bloomburrow,119,normal,rare,1,95781,4da80a9a-b1d5-4fc5-92f7-36946195d0c7,1.45,false,false,near_mint,en,USD
Thornplate Intimidator,BLB,Bloomburrow,117,normal,common,1,96019,42f66c4a-feaa-4ba6-aa56-955b43329a9e,0.02,false,false,near_mint,en,USD
Bakersbane Duo,BLB,Bloomburrow,163,normal,common,1,96035,5309354f-1ff4-4fa9-9141-01ea2f7588ab,0.1,false,false,near_mint,en,USD
Shore Up,BLB,Bloomburrow,69,normal,common,1,96277,4dc3b49e-3674-494c-bdea-4374cefd10f4,0.08,false,false,near_mint,en,USD
Emberheart Challenger,BLB,Bloomburrow,133,normal,rare,1,95888,0035082e-bb86-4f95-be48-ffc87fe5286d,4.13,false,false,near_mint,en,USD
"Gev, Scaled Scorch",BLB,Bloomburrow,214,normal,rare,1,96001,131ea976-289e-4f32-896d-27bbfd423ba9,0.37,false,false,near_mint,en,USD
Starfall Invocation,BLB,Bloomburrow,34,normal,rare,1,95904,2aea38e6-ec58-4091-b27c-2761bdd12b13,0.88,false,false,near_mint,en,USD
Tidecaller Mentor,BLB,Bloomburrow,236,normal,uncommon,1,95859,fa10ffac-7cc2-41ef-b8a0-9431923c0542,0.04,false,false,near_mint,en,USD
Jackdaw Savior,BLB,Bloomburrow,18,normal,rare,1,96000,121af600-6143-450a-9f87-12ce4833f1ec,0.27,false,false,near_mint,en,USD
"Helga, Skittish Seer",BLB,Bloomburrow,217,normal,mythic,1,95914,40339715-22d0-4f99-822b-a00d9824f27a,2.0,false,false,near_mint,en,USD
Long River Lurker,BLB,Bloomburrow,57,normal,uncommon,1,95941,7c267719-cd03-4003-b281-e732d5e42a1e,0.1,false,false,near_mint,en,USD
Thornvault Forager,BLB,Bloomburrow,197,normal,rare,1,95807,8c2d6b02-a453-40f9-992a-5c5542987cfb,0.65,false,false,near_mint,en,USD
Eddymurk Crab,BLB,Bloomburrow,48,normal,uncommon,1,96132,e6d45abe-4962-47d9-a54e-7e623ea8647c,0.18,false,false,near_mint,en,USD
Moonstone Harbinger,BLB,Bloomburrow,101,normal,uncommon,1,95922,59e4aa8d-1d06-48db-b205-aa2f1392bbcb,0.03,false,false,near_mint,en,USD
Brazen Collector,BLB,Bloomburrow,128,normal,uncommon,1,95873,78b55a58-c669-4dc6-aa63-5d9dff52e613,0.09,false,false,near_mint,en,USD
Brightblade Stoat,BLB,Bloomburrow,4,normal,uncommon,1,95882,df7fea2e-7414-4bc8-adb0-9342e174c009,0.07,false,false,near_mint,en,USD
Warren Warleader,BLB,Bloomburrow,38,normal,mythic,1,95849,eb5237a0-5ac3-4ded-9f92-5f782a7bbbd7,3.14,false,false,near_mint,en,USD
Kitnap,BLB,Bloomburrow,53,normal,rare,1,95739,085be5d1-fd85-46d1-ad39-a8aa75a06a96,0.14,false,false,near_mint,en,USD
Fountainport,BLB,Bloomburrow,253,normal,rare,1,96052,658cfcb7-81b7-48c6-9dd2-1663d06108cf,5.77,false,false,near_mint,en,USD
Whiskervale Forerunner,BLB,Bloomburrow,40,normal,rare,1,95927,60a78d59-af31-4af9-95aa-2573fe553925,0.17,false,false,near_mint,en,USD
Dreamdew Entrancer,BLB,Bloomburrow,211,normal,rare,1,95755,26bd6b0d-8606-4a37-8be3-a852f1a8e99c,0.28,false,false,near_mint,en,USD
Playful Shove,BLB,Bloomburrow,145,normal,uncommon,1,95993,07956edf-34c1-4218-9784-ddbca13e380c,0.1,false,false,near_mint,en,USD
Feed the Cycle,BLB,Bloomburrow,94,normal,uncommon,1,96067,7e017ff8-2936-4a1b-bece-00004cfbad06,0.12,false,false,near_mint,en,USD
Hoarder's Overflow,BLB,Bloomburrow,141,normal,uncommon,1,96112,c2ed5079-07b4-4575-a2c8-5f0cbff888c3,0.04,false,false,near_mint,en,USD
Sunspine Lynx,BLB,Bloomburrow,155,normal,rare,1,95875,8995ceaf-b7e0-423c-8f3e-25212d522502,1.8,false,false,near_mint,en,USD
Stormcatch Mentor,BLB,Bloomburrow,234,normal,uncommon,1,95813,99754055-6d67-4fde-aff3-41f6af6ea764,0.21,false,false,near_mint,en,USD
For the Common Good,BLB,Bloomburrow,172,normal,rare,1,95912,3ec72a27-b622-47d7-bdf3-970ccaef0d2a,0.87,false,false,near_mint,en,USD
Dawn's Truce,BLB,Bloomburrow,295,normal,rare,1,95893,0cce7aec-f9b0-461b-8245-5286b741409d,8.43,false,false,near_mint,en,USD
"Clement, the Worrywort",BLB,Bloomburrow,329,normal,rare,1,95835,d1a68d51-cd4e-4ee3-abc7-01435085aa26,0.55,false,false,near_mint,en,USD
Tender Wildguide,BLB,Bloomburrow,325,normal,rare,1,95760,2dc164c8-62ca-4d59-ae1c-ef273fde9d10,0.63,false,false,near_mint,en,USD
Valley Questcaller,BLB,Bloomburrow,299,normal,rare,1,95839,d9f25130-678d-4338-8eb4-b20d2da5bc74,1.0,false,false,near_mint,en,USD
Heirloom Epic,BLB,Bloomburrow,246,normal,uncommon,1,96061,7839ce48-0175-494a-ab89-9bdfb7a50cb1,0.06,false,false,near_mint,en,USD
Shrike Force,BLB,Bloomburrow,31,normal,uncommon,1,95763,306fec2c-d8b7-4f4b-8f58-10e3b9f3158f,0.14,false,false,near_mint,en,USD
Into the Flood Maw,BLB,Bloomburrow,52,normal,uncommon,1,95919,50b9575a-53d9-4df7-b86c-cda021107d3f,1.48,false,false,near_mint,en,USD
Salvation Swan,BLB,Bloomburrow,28,normal,rare,1,95635,b2656160-d319-4530-a6e5-c418596c3f12,0.27,false,false,near_mint,en,USD
Hired Claw,BLB,Bloomburrow,140,normal,rare,1,95897,1ae41080-0d67-4719-adb2-49bf2a268b6c,2.43,false,false,near_mint,en,USD
Starseer Mentor,BLB,Bloomburrow,233,normal,uncommon,1,95791,6b2f6dc5-9fe8-49c1-b24c-1d99ce1da619,0.05,false,false,near_mint,en,USD
Mistbreath Elder,BLB,Bloomburrow,184,normal,rare,1,95975,e5246540-5a84-41d8-9e30-8e7a6c0e84e1,0.37,false,false,near_mint,en,USD
Hivespine Wolverine,BLB,Bloomburrow,177,normal,uncommon,1,95943,821970a3-a291-4fe9-bb13-dfc54f9c3caf,0.06,false,false,near_mint,en,USD
Patchwork Banner,BLB,Bloomburrow,247,normal,uncommon,1,96097,a8a982c8-bc08-44ba-b3ed-9e4b124615d6,4.68,false,false,near_mint,en,USD
"Beza, the Bounding Spring",BLB,Bloomburrow,2,normal,mythic,1,95862,fc310a26-b6a0-4e42-98ab-bdfd7b06cb63,9.56,false,false,near_mint,en,USD
Essence Channeler,BLB,Bloomburrow,12,normal,rare,1,96042,5aaf7e4c-4d5d-4acc-a834-e6c4a7629408,1.27,false,false,near_mint,en,USD
Valley Questcaller,BLB,Bloomburrow,36,normal,rare,1,95826,ba629ca8-a368-4282-8a61-9bf6a5c217f0,1.12,false,false,near_mint,en,USD
Conduct Electricity,BLB,Bloomburrow,130,normal,common,1,95906,2f373dd6-2412-453c-85ba-10230dfe473a,0.02,false,false,near_mint,en,USD
Glidedive Duo,BLB,Bloomburrow,96,normal,common,1,96026,4831e7ae-54e3-4bd9-b5af-52dc29f81715,0.02,false,false,near_mint,en,USD
Mind Spiral,BLB,Bloomburrow,59,normal,common,1,96068,7e24fe6a-607b-49b8-9fca-cecb1e40de7f,0.01,false,false,near_mint,en,USD
Starforged Sword,BLB,Bloomburrow,249,normal,uncommon,1,96110,c23d8e96-b972-4c6c-b0c4-b6627621f048,0.03,false,false,near_mint,en,USD
Vinereap Mentor,BLB,Bloomburrow,238,normal,uncommon,1,95902,29b615ba-45c4-42a1-8525-1535f0b55300,0.16,false,false,near_mint,en,USD
Mindwhisker,BLB,Bloomburrow,60,normal,uncommon,1,96099,aaa10f34-5bfd-4d87-8f07-58de3b0f5663,0.08,false,false,near_mint,en,USD
Persistent Marshstalker,BLB,Bloomburrow,104,normal,uncommon,1,95947,8b900c71-713b-4b7e-b4be-ad9f4aa0c139,0.13,false,false,near_mint,en,USD
Portent of Calamity,BLB,Bloomburrow,66,normal,rare,1,96073,8599e2dd-9164-4da3-814f-adccef3b9497,0.14,false,false,near_mint,en,USD
Fabled Passage,BLB,Bloomburrow,252,normal,rare,1,96075,8809830f-d8e1-4603-9652-0ad8b00234e9,5.13,false,false,near_mint,en,USD
Stormsplitter,BLB,Bloomburrow,154,normal,mythic,1,96040,56f214d3-6b93-40db-a693-55e491c8a283,3.12,false,false,near_mint,en,USD
Stargaze,BLB,Bloomburrow,114,normal,uncommon,1,95939,777fc599-8de7-44d2-8fdd-9bddf5948a0c,0.14,false,false,near_mint,en,USD
Coruscation Mage,BLB,Bloomburrow,131,normal,uncommon,1,95972,dc2c1de0-6233-469a-be72-a050b97d2c8f,0.32,false,false,near_mint,en,USD
Dour Port-Mage,BLB,Bloomburrow,47,normal,rare,1,96049,6402133e-eed1-4a46-9667-8b7a310362c1,2.17,false,false,near_mint,en,USD
"Muerra, Trash Tactician",BLB,Bloomburrow,227,normal,rare,1,95821,b40e4658-fd68-46d0-9a89-25570a023d19,0.31,false,false,near_mint,en,USD
Stormchaser's Talent,BLB,Bloomburrow,75,normal,rare,1,96092,a36e682d-b43d-4e08-bf5b-70d7e924dbe5,13.62,false,false,near_mint,en,USD
Sinister Monolith,BLB,Bloomburrow,113,normal,uncommon,1,96012,2a15e06c-2608-4e7a-a16c-d35417669d86,0.08,false,false,near_mint,en,USD
Pawpatch Formation,BLB,Bloomburrow,186,normal,uncommon,1,95963,b82c20ad-0f69-4822-ae76-770832cccdf7,1.83,false,false,near_mint,en,USD
Plumecreed Mentor,BLB,Bloomburrow,228,normal,uncommon,1,95819,b1aa988f-547e-449a-9f1a-296c01d68d96,0.03,false,false,near_mint,en,USD
"Baylen, the Haymaker",BLB,Bloomburrow,205,normal,rare,1,95889,00e93be2-e06b-4774-8ba5-ccf82a6da1d8,1.04,false,false,near_mint,en,USD
Long River's Pull,BLB,Bloomburrow,58,normal,uncommon,1,95900,1c81d0fa-81a1-4f9b-a5fd-5a648fd01dea,0.23,false,false,near_mint,en,USD
Bonecache Overseer,BLB,Bloomburrow,85,normal,uncommon,1,95944,82defb87-237f-4b77-9673-5bf00607148f,0.08,false,false,near_mint,en,USD
Three Tree Scribe,BLB,Bloomburrow,199,normal,uncommon,1,95977,ea2ca1b3-4c1a-4be5-b321-f57db5ff0528,0.15,false,false,near_mint,en,USD
Cruelclaw's Heist,BLB,Bloomburrow,88,normal,rare,1,96121,cab4539a-0157-4cbe-b50f-6e2575df74e9,0.48,false,false,near_mint,en,USD
Manifold Mouse,BLB,Bloomburrow,143,normal,rare,1,95881,db3832b5-e83f-4569-bd49-fb7b86fa2d47,3.37,false,false,near_mint,en,USD
Iridescent Vinelasher,BLB,Bloomburrow,99,normal,rare,1,95877,b2bc854c-4e72-48e0-a098-e3451d6e511d,1.11,false,false,near_mint,en,USD
Daggerfang Duo,BLB,Bloomburrow,89,normal,common,1,96468,cea2bb34-e328-44fb-918a-72208c9457e4,0.03,false,false,near_mint,en,USD
Stickytongue Sentinel,BLB,Bloomburrow,193,normal,common,1,96105,b5fa9651-b217-4f93-9c46-9bdb11feedcb,0.03,false,false,near_mint,en,USD
Brave-Kin Duo,BLB,Bloomburrow,3,normal,common,1,95824,b8dd4693-424d-4d6e-86cf-24401a23d6b1,0.03,false,false,near_mint,en,USD
Driftgloom Coyote,BLB,Bloomburrow,11,normal,uncommon,1,95969,d7ab2de3-3aea-461a-a74f-fb742cf8a198,0.03,false,false,near_mint,en,USD
Rockface Village,BLB,Bloomburrow,259,normal,uncommon,1,95629,62799d24-39a6-4e66-8ac3-7cafa99e6e6d,0.48,false,false,near_mint,en,USD
Flamecache Gecko,BLB,Bloomburrow,135,normal,uncommon,1,96142,fb8e7c97-8393-41b8-bb0b-3983dcc5e7f4,0.08,false,false,near_mint,en,USD
Innkeeper's Talent,BLB,Bloomburrow,180,normal,rare,1,95954,941b0afc-0e8f-45f2-ae7f-07595e164611,19.36,false,false,near_mint,en,USD
Repel Calamity,BLB,Bloomburrow,27,foil,uncommon,1,95834,d068192a-6270-4981-819d-4945fa4a2b83,0.08,false,false,near_mint,en,USD
Galewind Moose,BLB,Bloomburrow,173,foil,uncommon,1,95871,58706bd8-558a-43b9-9f1e-c1ff0044203b,0.14,false,false,near_mint,en,USD
Brave-Kin Duo,BLB,Bloomburrow,3,foil,common,1,95824,b8dd4693-424d-4d6e-86cf-24401a23d6b1,0.06,false,false,near_mint,en,USD
Agate Assault,BLB,Bloomburrow,122,foil,common,1,96066,7dd9946b-515e-4e0d-9da2-711e126e9fa6,0.03,false,false,near_mint,en,USD
Flamecache Gecko,BLB,Bloomburrow,135,foil,uncommon,1,96142,fb8e7c97-8393-41b8-bb0b-3983dcc5e7f4,0.12,false,false,near_mint,en,USD
Rabid Gnaw,BLB,Bloomburrow,147,foil,uncommon,1,96014,2f815bae-820a-49f6-8eed-46f658e7b6ff,0.1,false,false,near_mint,en,USD
Pond Prophet,BLB,Bloomburrow,229,foil,common,1,95861,fb959e74-61ea-453d-bb9f-ad0183c0e1b1,0.16,false,false,near_mint,en,USD
Star Charter,BLB,Bloomburrow,33,foil,uncommon,1,95894,0e209237-00f7-4bf0-8287-ccde02ce8e8d,0.12,false,false,near_mint,en,USD
Kindlespark Duo,BLB,Bloomburrow,142,foil,common,1,96096,a839fba3-1b66-4dd1-bf43-9b015b44fc81,0.07,false,false,near_mint,en,USD
Crumb and Get It,BLB,Bloomburrow,8,foil,common,1,96259,3c7b3b25-d4b3-4451-9f5c-6eb369541175,0.04,false,false,near_mint,en,USD
Peerless Recycling,BLB,Bloomburrow,188,foil,uncommon,1,95925,5f72466c-505b-4371-9366-0fde525a37e6,0.23,false,false,near_mint,en,USD
Nocturnal Hunger,BLB,Bloomburrow,102,foil,common,1,96060,742c0409-9abd-4559-b52e-932cc90c531a,0.02,false,false,near_mint,en,USD
Seedpod Squire,BLB,Bloomburrow,232,foil,common,1,95852,f3684577-51ce-490e-9b59-b19c733be466,0.03,false,false,near_mint,en,USD
Nettle Guard,BLB,Bloomburrow,23,foil,common,1,95949,8c9c3cc3-2aa2-453e-a17c-2baeeaabe0a9,0.05,false,false,near_mint,en,USD
Sazacap's Brew,BLB,Bloomburrow,151,foil,common,1,96330,6d963080-b3ec-467d-82f7-39db6ecd6bbc,0.05,false,false,near_mint,en,USD
Waterspout Warden,BLB,Bloomburrow,80,foil,common,1,95909,35898b39-98e2-405b-8f18-0e054bd2c29e,0.04,false,false,near_mint,en,USD
Mindwhisker,BLB,Bloomburrow,60,foil,uncommon,1,96099,aaa10f34-5bfd-4d87-8f07-58de3b0f5663,0.12,false,false,near_mint,en,USD
Splash Portal,BLB,Bloomburrow,74,foil,uncommon,1,95958,adbaa356-28ba-487f-930a-a957d9960ab0,0.28,false,false,near_mint,en,USD
Festival of Embers,BLB,Bloomburrow,134,foil,rare,1,96023,4433ee12-2013-4fdc-979f-ae065f63a527,0.2,false,false,near_mint,en,USD
Brightblade Stoat,BLB,Bloomburrow,4,foil,uncommon,1,95882,df7fea2e-7414-4bc8-adb0-9342e174c009,0.11,false,false,near_mint,en,USD
Mind Spiral,BLB,Bloomburrow,59,foil,common,1,96068,7e24fe6a-607b-49b8-9fca-cecb1e40de7f,0.04,false,false,near_mint,en,USD
Rust-Shield Rampager,BLB,Bloomburrow,190,foil,common,1,96117,c96b01f5-83de-4237-a68d-f946c53e31a6,0.04,false,false,near_mint,en,USD
Barkform Harvester,BLB,Bloomburrow,243,foil,common,1,95984,f77049a6-0f22-415b-bc89-20bcb32accf6,0.11,false,false,near_mint,en,USD
Wax-Wane Witness,BLB,Bloomburrow,39,foil,common,1,95971,d90ea719-5320-46c6-a347-161853a14776,0.05,false,false,near_mint,en,USD
Warren Elder,BLB,Bloomburrow,37,foil,common,1,96030,4bf20069-5a20-4f95-976b-6af2b69f3ad0,0.04,false,false,near_mint,en,USD
Stickytongue Sentinel,BLB,Bloomburrow,193,foil,common,1,96105,b5fa9651-b217-4f93-9c46-9bdb11feedcb,0.05,false,false,near_mint,en,USD
"Vren, the Relentless",BLB,Bloomburrow,239,foil,rare,1,95930,6506277d-f031-4db5-9d16-bf2389094785,0.71,false,false,near_mint,en,USD
Three Tree Scribe,BLB,Bloomburrow,199,foil,uncommon,1,95977,ea2ca1b3-4c1a-4be5-b321-f57db5ff0528,0.2,false,false,near_mint,en,USD
Glidedive Duo,BLB,Bloomburrow,96,foil,common,1,96026,4831e7ae-54e3-4bd9-b5af-52dc29f81715,0.03,false,false,near_mint,en,USD
Bushy Bodyguard,BLB,Bloomburrow,166,foil,uncommon,1,95997,0de60cf7-fa82-4b6f-9f88-6590fba5c863,0.12,false,false,near_mint,en,USD
Conduct Electricity,BLB,Bloomburrow,130,foil,common,1,95906,2f373dd6-2412-453c-85ba-10230dfe473a,0.03,false,false,near_mint,en,USD
Daggerfang Duo,BLB,Bloomburrow,89,foil,common,1,96468,cea2bb34-e328-44fb-918a-72208c9457e4,0.07,false,false,near_mint,en,USD
Shore Up,BLB,Bloomburrow,69,foil,common,1,96277,4dc3b49e-3674-494c-bdea-4374cefd10f4,0.13,false,false,near_mint,en,USD
Hidden Grotto,BLB,Bloomburrow,254,foil,common,1,95918,4ba8f2e7-8357-4862-97dc-1942d066023a,0.17,false,false,near_mint,en,USD
Cindering Cutthroat,BLB,Bloomburrow,208,foil,common,1,95820,b2ea10dd-21ea-4622-be27-79d03a802b85,0.01,false,false,near_mint,en,USD
"Glarb, Calamity's Augur",BLB,Bloomburrow,215,foil,mythic,1,95864,ffc70b2d-5a3a-49ea-97db-175a62248302,4.3,false,false,near_mint,en,USD
Kindlespark Duo,BLB,Bloomburrow,142,normal,common,5,96096,a839fba3-1b66-4dd1-bf43-9b015b44fc81,0.04,false,false,near_mint,en,USD
Finch Formation,BLB,Bloomburrow,50,normal,common,2,95899,1c671eab-d1ef-4d79-94eb-8b85f0d18699,0.02,false,false,near_mint,en,USD
Builder's Talent,BLB,Bloomburrow,5,normal,uncommon,2,96002,15fa581a-724e-4196-a9a3-ff84c54bdb7d,0.08,false,false,near_mint,en,USD
Might of the Meek,BLB,Bloomburrow,144,normal,common,9,95627,509bf254-8a2b-4dfa-9ae5-386321b35e8b,0.09,false,false,near_mint,en,USD
Nightwhorl Hermit,BLB,Bloomburrow,62,normal,common,3,95994,0928e04f-2568-41e8-b603-7a25cf5f94d0,0.02,false,false,near_mint,en,USD
Fell,BLB,Bloomburrow,95,normal,uncommon,2,95830,c96ac326-de44-470b-a592-a4c2a052c091,0.3,false,false,near_mint,en,USD
Sunshower Druid,BLB,Bloomburrow,195,normal,common,6,95630,7740abc5-54e1-478d-966e-0fa64e727995,0.04,false,false,near_mint,en,USD
Wandertale Mentor,BLB,Bloomburrow,240,normal,uncommon,2,95808,8c399a55-d02e-41ed-b827-8784b738c118,0.09,false,false,near_mint,en,USD
Thought-Stalker Warlock,BLB,Bloomburrow,118,normal,uncommon,2,96018,42e80284-d489-493b-ae92-95b742d07cb3,0.12,false,false,near_mint,en,USD
Splash Portal,BLB,Bloomburrow,74,normal,uncommon,2,95958,adbaa356-28ba-487f-930a-a957d9960ab0,0.23,false,false,near_mint,en,USD
Alania's Pathmaker,BLB,Bloomburrow,123,normal,common,7,96123,d3871fe6-e26e-4ab4-bd81-7e3c7b8135c1,0.02,false,false,near_mint,en,USD
Head of the Homestead,BLB,Bloomburrow,216,normal,common,3,95762,2fc20157-edd3-484d-8864-925c071c0551,0.04,false,false,near_mint,en,USD
Hidden Grotto,BLB,Bloomburrow,254,normal,common,4,95918,4ba8f2e7-8357-4862-97dc-1942d066023a,0.08,false,false,near_mint,en,USD
Star Charter,BLB,Bloomburrow,33,normal,uncommon,3,95894,0e209237-00f7-4bf0-8287-ccde02ce8e8d,0.04,false,false,near_mint,en,USD
War Squeak,BLB,Bloomburrow,160,normal,common,4,95999,105964a7-88b7-4340-aa66-e908189a3638,0.02,false,false,near_mint,en,USD
Bellowing Crier,BLB,Bloomburrow,42,normal,common,2,96119,ca2215dd-6300-49cf-b9b2-3a840b786c31,0.04,false,false,near_mint,en,USD
Cindering Cutthroat,BLB,Bloomburrow,208,normal,common,4,95820,b2ea10dd-21ea-4622-be27-79d03a802b85,0.02,false,false,near_mint,en,USD
Intrepid Rabbit,BLB,Bloomburrow,17,normal,common,7,96276,4d70b99d-c8bf-4a56-8957-cf587fe60b81,0.03,false,false,near_mint,en,USD
Carrot Cake,BLB,Bloomburrow,7,normal,common,3,95636,eb03bb4f-8b4b-417e-bfc6-294cd2186b2e,0.06,false,false,near_mint,en,USD
Thought Shucker,BLB,Bloomburrow,77,normal,common,7,95916,44b0d83b-cc41-4f82-892c-ef6d3293228a,0.02,false,false,near_mint,en,USD
Seasoned Warrenguard,BLB,Bloomburrow,30,normal,uncommon,2,96081,90873995-876f-4e89-8bc7-41a74f4d931f,0.09,false,false,near_mint,en,USD
Junkblade Bruiser,BLB,Bloomburrow,220,normal,common,3,95810,918fd89b-5ab7-4ae2-920c-faca5e9da7b9,0.04,false,false,near_mint,en,USD
Cache Grab,BLB,Bloomburrow,167,normal,common,2,95842,dfd977dc-a7c3-4d0a-aca7-b25bd154e963,0.08,false,false,near_mint,en,USD
Lilypad Village,BLB,Bloomburrow,255,normal,uncommon,2,95631,7e95a7cc-ed77-4ca4-80db-61c0fc68bf50,0.14,false,false,near_mint,en,USD
Agate-Blade Assassin,BLB,Bloomburrow,82,normal,common,5,96017,39ebb84a-1c52-4b07-9bd0-b360523b3a5b,0.03,false,false,near_mint,en,USD
Repel Calamity,BLB,Bloomburrow,27,normal,uncommon,2,95834,d068192a-6270-4981-819d-4945fa4a2b83,0.07,false,false,near_mint,en,USD
Hazel's Nocturne,BLB,Bloomburrow,97,normal,uncommon,2,96009,239363df-4de8-4b64-80fc-a1f4b5c36027,0.07,false,false,near_mint,en,USD
Treeguard Duo,BLB,Bloomburrow,200,normal,common,4,96077,89c8456e-c971-42b7-abf3-ff5ae1320abe,0.01,false,false,near_mint,en,USD
Calamitous Tide,BLB,Bloomburrow,43,normal,uncommon,2,96003,178bc8b2-ffa0-4549-aead-aacb3db3cf19,0.03,false,false,near_mint,en,USD
Splash Lasher,BLB,Bloomburrow,73,normal,uncommon,2,95910,362ee125-35a0-46cd-a201-e6797d12d33a,0.04,false,false,near_mint,en,USD
Blooming Blast,BLB,Bloomburrow,126,normal,uncommon,2,95996,0cd92a83-cec3-4085-a929-3f204e3e0140,0.06,false,false,near_mint,en,USD
Sugar Coat,BLB,Bloomburrow,76,normal,uncommon,2,95887,fcacbe71-efb0-49e1-b2d0-3ee65ec6cf8b,0.05,false,false,near_mint,en,USD
Dazzling Denial,BLB,Bloomburrow,45,normal,common,6,96369,8739f1ac-2e57-4b52-a7ff-cc8df5936aad,0.04,false,false,near_mint,en,USD
Nettle Guard,BLB,Bloomburrow,23,normal,common,4,95949,8c9c3cc3-2aa2-453e-a17c-2baeeaabe0a9,0.03,false,false,near_mint,en,USD
Raccoon Rallier,BLB,Bloomburrow,148,normal,common,5,96104,b5b5180f-5a1c-4df8-9019-195e65a50ce3,0.04,false,false,near_mint,en,USD
High Stride,BLB,Bloomburrow,176,normal,common,8,96153,09c8cf4b-8e65-4a1c-b458-28b5ab56b390,0.04,false,false,near_mint,en,USD
Otterball Antics,BLB,Bloomburrow,63,normal,uncommon,2,95913,3ff83ff7-e428-4ccc-8341-f223dab76bd1,0.1,false,false,near_mint,en,USD
Frilled Sparkshooter,BLB,Bloomburrow,136,normal,common,7,95934,674bbd6d-e329-42cf-963d-88d1ce8fe51e,0.02,false,false,near_mint,en,USD
Moonrise Cleric,BLB,Bloomburrow,226,normal,common,3,95767,35f2a71f-31e8-4b51-9dd4-51a5336b3b86,0.04,false,false,near_mint,en,USD
Wax-Wane Witness,BLB,Bloomburrow,39,normal,common,3,95971,d90ea719-5320-46c6-a347-161853a14776,0.02,false,false,near_mint,en,USD
Pearl of Wisdom,BLB,Bloomburrow,64,normal,common,7,95625,13cb9575-1138-4f99-8e90-0eaf00bdf4a1,0.01,false,false,near_mint,en,USD
Run Away Together,BLB,Bloomburrow,67,normal,common,3,95799,7cb7ec70-a5a4-4188-ba1a-e88b81bdbad0,0.04,false,false,near_mint,en,USD
Early Winter,BLB,Bloomburrow,93,normal,common,2,95626,5030e6ac-211d-4145-8c87-998a8351a467,0.05,false,false,near_mint,en,USD
Three Tree Rootweaver,BLB,Bloomburrow,198,normal,common,2,96469,d1ab6e14-26e0-4174-b5c6-bc0f5c26b177,0.04,false,false,near_mint,en,USD
Mudflat Village,BLB,Bloomburrow,257,normal,uncommon,2,95628,53ec4ad3-9cf0-4f1b-a9db-d63feee594ab,0.24,false,false,near_mint,en,USD
Starlit Soothsayer,BLB,Bloomburrow,115,normal,common,6,95895,184c1eca-2991-438f-b5d2-cd2529b9c9b4,0.03,false,false,near_mint,en,USD
Hop to It,BLB,Bloomburrow,16,normal,uncommon,2,95851,ee7207f8-5daa-42af-aeea-7a489047110b,0.07,false,false,near_mint,en,USD
Psychic Whorl,BLB,Bloomburrow,105,normal,common,5,96127,df900308-8432-4a0a-be21-17482026012b,0.04,false,false,near_mint,en,USD
Barkform Harvester,BLB,Bloomburrow,243,normal,common,4,95984,f77049a6-0f22-415b-bc89-20bcb32accf6,0.06,false,false,near_mint,en,USD
Daring Waverider,BLB,Bloomburrow,44,normal,uncommon,2,95896,19422406-0c1a-497e-bed1-708bc556491a,0.06,false,false,near_mint,en,USD
Plumecreed Escort,BLB,Bloomburrow,65,normal,uncommon,2,95983,f71320ed-2f30-49ce-bcb0-19aebba3f0e8,0.05,false,false,near_mint,en,USD
Parting Gust,BLB,Bloomburrow,24,normal,uncommon,2,95744,1086e826-94b8-4398-8a38-d8eacca56a43,0.38,false,false,near_mint,en,USD
Veteran Guardmouse,BLB,Bloomburrow,237,normal,common,3,95771,3db43c46-b616-4ef8-80ed-0fab345ab3d0,0.01,false,false,near_mint,en,USD
Dire Downdraft,BLB,Bloomburrow,46,normal,common,6,96526,f1931f22-974c-43ad-911e-684bf3f9995d,0.02,false,false,near_mint,en,USD
Waterspout Warden,BLB,Bloomburrow,80,normal,common,4,95909,35898b39-98e2-405b-8f18-0e054bd2c29e,0.01,false,false,near_mint,en,USD
Lupinflower Village,BLB,Bloomburrow,256,normal,uncommon,2,95634,8ab9d56f-9178-4ec9-a5f6-b934f50d8d9d,0.1,false,false,near_mint,en,USD
Heartfire Hero,BLB,Bloomburrow,138,normal,uncommon,2,95870,48ace959-66b2-40c8-9bff-fd7ed9c99a82,2.1,false,false,near_mint,en,USD
Peerless Recycling,BLB,Bloomburrow,188,normal,uncommon,2,95925,5f72466c-505b-4371-9366-0fde525a37e6,0.1,false,false,near_mint,en,USD
Pond Prophet,BLB,Bloomburrow,229,normal,common,4,95861,fb959e74-61ea-453d-bb9f-ad0183c0e1b1,0.09,false,false,near_mint,en,USD
Crumb and Get It,BLB,Bloomburrow,8,normal,common,2,96259,3c7b3b25-d4b3-4451-9f5c-6eb369541175,0.03,false,false,near_mint,en,USD
Wildfire Howl,BLB,Bloomburrow,162,normal,uncommon,2,96059,7392d397-9836-4df2-944d-c930c9566811,0.05,false,false,near_mint,en,USD
Bark-Knuckle Boxer,BLB,Bloomburrow,164,normal,uncommon,2,95921,582637a9-6aa0-4824-bed7-d5fc91bda35e,0.03,false,false,near_mint,en,USD
Ruthless Negotiation,BLB,Bloomburrow,108,normal,uncommon,2,95828,c7f4360c-8d68-4058-b9ec-da9948cb060d,0.1,false,false,near_mint,en,USD
Three Tree Mascot,FDN,Foundations,682,normal,common,3,100412,40b8bf3a-1cb5-4ce2-ac25-9410f17130de,0.11,false,false,near_mint,en,USD
Tempest Angler,BLB,Bloomburrow,235,normal,common,2,95803,850daae4-f0b7-4604-95e7-ad044ec165c3,0.04,false,false,near_mint,en,USD
Starscape Cleric,BLB,Bloomburrow,116,normal,uncommon,2,96037,53a938a7-0154-4350-87cb-00da24ec3824,0.62,false,false,near_mint,en,USD
Wick's Patrol,BLB,Bloomburrow,121,normal,uncommon,3,95926,5fa0c53d-fe7b-4b8b-ad81-7967ca318ff7,0.07,false,false,near_mint,en,USD
Fireglass Mentor,BLB,Bloomburrow,213,normal,uncommon,2,95823,b78fbaa3-c580-4290-9c28-b74169aab2fc,0.08,false,false,near_mint,en,USD
Steampath Charger,BLB,Bloomburrow,153,normal,common,2,95890,03bf1296-e347-4070-8c6f-5c362c2f9364,0.03,false,false,near_mint,en,USD
Whiskerquill Scribe,BLB,Bloomburrow,161,normal,common,2,96124,da653996-9bd4-40bd-afb4-48c7e070a269,0.01,false,false,near_mint,en,USD
Lilysplash Mentor,BLB,Bloomburrow,222,normal,uncommon,3,95789,64de7b1f-a03e-4407-91f1-e108a2f26735,0.12,false,false,near_mint,en,USD
Roughshod Duo,BLB,Bloomburrow,150,normal,common,3,96343,78cdcfb9-a247-4c2d-a098-5b57570f8cd5,0.03,false,false,near_mint,en,USD
Bonebind Orator,BLB,Bloomburrow,84,normal,common,3,96535,faf226fa-ca09-4468-8804-87b2a7de2c66,0.02,false,false,near_mint,en,USD
Agate Assault,BLB,Bloomburrow,122,normal,common,2,96066,7dd9946b-515e-4e0d-9da2-711e126e9fa6,0.02,false,false,near_mint,en,USD
Nocturnal Hunger,BLB,Bloomburrow,102,normal,common,3,96060,742c0409-9abd-4559-b52e-932cc90c531a,0.02,false,false,near_mint,en,USD
Jolly Gerbils,BLB,Bloomburrow,19,normal,uncommon,2,96167,0eab51d6-ba17-4a8c-8834-25db363f2b6b,0.04,false,false,near_mint,en,USD
Downwind Ambusher,BLB,Bloomburrow,92,normal,uncommon,2,95920,55cfd628-933a-4d3d-b2e5-70bc86960d1c,0.02,false,false,near_mint,en,USD
Scales of Shale,BLB,Bloomburrow,110,normal,common,2,95955,9ae14276-dbbd-4257-80e9-accd6c19f5b2,0.02,false,false,near_mint,en,USD
Treetop Sentries,BLB,Bloomburrow,201,normal,common,4,95974,e16d4d6e-1fe5-4ff6-9877-8c849a24f5e0,0.03,false,false,near_mint,en,USD
Seedpod Squire,BLB,Bloomburrow,232,normal,common,4,95852,f3684577-51ce-490e-9b59-b19c733be466,0.01,false,false,near_mint,en,USD
Savor,BLB,Bloomburrow,109,normal,common,4,96178,1397f689-dca1-4d35-864b-92c5606afb9a,0.04,false,false,near_mint,en,USD
Polliwallop,BLB,Bloomburrow,189,normal,common,2,95935,6bc4963c-d90b-4588-bdb7-85956e42a623,0.03,false,false,near_mint,en,USD
Sonar Strike,BLB,Bloomburrow,32,normal,common,2,96093,a50da179-751f-47a8-a547-8c4a291ed381,0.02,false,false,near_mint,en,USD
Uncharted Haven,FDN,Foundations,564,normal,common,3,97170,172cd5b7-98fc-4add-b858-a0b3dfb75c19,0.14,false,false,near_mint,en,USD
Teapot Slinger,BLB,Bloomburrow,157,normal,uncommon,2,96015,30506844-349f-4b68-8cc1-d028c1611cc7,0.06,false,false,near_mint,en,USD
Harvestrite Host,BLB,Bloomburrow,15,normal,uncommon,2,95915,41762689-0c13-4d45-9d81-ba2afad980f8,0.07,false,false,near_mint,en,USD
Spellgyre,BLB,Bloomburrow,72,normal,uncommon,2,96139,f6f6620a-1d40-429d-9a0c-aaeb62adaa71,0.08,false,false,near_mint,en,USD
Oakhollow Village,BLB,Bloomburrow,258,normal,uncommon,2,95624,0d49b016-b02b-459f-85e9-c04f6bdcb94e,0.35,false,false,near_mint,en,USD
Bumbleflower's Sharepot,BLB,Bloomburrow,244,normal,common,2,95924,5f0affd5-5dcd-4dd1-a694-37a9aedf4084,0.02,false,false,near_mint,en,USD
Overprotect,BLB,Bloomburrow,185,normal,uncommon,2,95891,079e979f-b618-4625-989c-e0ea5b61ed8a,0.55,false,false,near_mint,en,USD
Heaped Harvest,BLB,Bloomburrow,175,normal,common,3,96255,3b5349db-0e0a-4b15-886e-0db403ef49cb,0.1,false,false,near_mint,en,USD
Flowerfoot Swordmaster,BLB,Bloomburrow,14,normal,uncommon,2,95812,97ff118f-9c3c-43a2-8085-980c7fe7d227,0.15,false,false,near_mint,en,USD
Banishing Light,BLB,Bloomburrow,1,normal,common,6,96011,25a06f82-ebdb-4dd6-bfe8-958018ce557c,0.04,false,false,near_mint,en,USD
Sazacap's Brew,BLB,Bloomburrow,151,normal,common,3,96330,6d963080-b3ec-467d-82f7-39db6ecd6bbc,0.05,false,false,near_mint,en,USD
Diresight,BLB,Bloomburrow,91,normal,common,3,95985,fada29c0-5293-40a4-b36d-d073ee99e650,0.1,false,false,near_mint,en,USD
Gossip's Talent,BLB,Bloomburrow,51,normal,uncommon,2,95961,b299889a-03d6-4659-b0e1-f0830842e40f,0.18,false,false,near_mint,en,USD
Fountainport Bell,BLB,Bloomburrow,245,normal,common,3,96094,a5c94bc0-a49d-451b-8e8d-64d46b8b8603,0.04,false,false,near_mint,en,USD
Reptilian Recruiter,BLB,Bloomburrow,149,normal,uncommon,2,96072,81dec453-c9d7-42cb-980a-c82f82bede76,0.02,false,false,near_mint,en,USD
Thistledown Players,BLB,Bloomburrow,35,normal,common,2,95960,afa8d83f-8586-4127-8b55-9715e9547488,0.01,false,false,near_mint,en,USD
Clifftop Lookout,BLB,Bloomburrow,168,normal,uncommon,2,95931,662d3bcc-65f3-4c69-8ea1-446870a1193d,0.16,false,false,near_mint,en,USD
Rust-Shield Rampager,BLB,Bloomburrow,190,normal,common,2,96117,c96b01f5-83de-4237-a68d-f946c53e31a6,0.02,false,false,near_mint,en,USD
Consumed by Greed,BLB,Bloomburrow,87,normal,uncommon,2,95884,e50acc41-3517-42db-b1d3-1bdfd7294d84,0.09,false,false,near_mint,en,USD
Rabbit Response,BLB,Bloomburrow,26,normal,common,2,96114,c4ded450-346d-4917-917a-b62bc0267509,0.02,false,false,near_mint,en,USD
Corpseberry Cultivator,BLB,Bloomburrow,210,normal,common,2,95829,c911a759-ed7b-452b-88a3-663478357610,0.02,false,false,near_mint,en,USD
Mind Drill Assailant,BLB,Bloomburrow,225,normal,common,2,95783,507ba708-ca9b-453e-b4c2-23b6650eb5a8,0.05,false,false,near_mint,en,USD
Hazardroot Herbalist,BLB,Bloomburrow,174,normal,uncommon,2,96130,e2882982-b3a3-4762-a550-6b82db1038e8,0.04,false,false,near_mint,en,USD
Dewdrop Cure,BLB,Bloomburrow,10,normal,uncommon,2,95932,666aefc2-44e0-4c27-88d5-7906f245a71f,0.13,false,false,near_mint,en,USD
Valley Rally,BLB,Bloomburrow,159,normal,uncommon,2,95878,b6178258-1ad6-4122-a56f-6eb7d0611e84,0.04,false,false,near_mint,en,USD
Blacksmith's Talent,BLB,Bloomburrow,125,normal,uncommon,2,96029,4bb318fa-481d-40a7-978e-f01b49101ae0,0.17,false,false,near_mint,en,USD
Pileated Provisioner,BLB,Bloomburrow,25,normal,common,2,96102,ae442cd6-c4df-4aad-9b1d-ccd936c5ec96,0.02,false,false,near_mint,en,USD
Short Bow,BLB,Bloomburrow,248,normal,uncommon,2,96281,51d8b72b-fa8f-48d3-bddc-d3ce9b8ba2ea,0.15,false,false,near_mint,en,USD
Warren Elder,BLB,Bloomburrow,37,normal,common,2,96030,4bf20069-5a20-4f95-976b-6af2b69f3ad0,0.03,false,false,near_mint,en,USD
1 Name Set code Set name Collector number Foil Rarity Quantity ManaBox ID Scryfall ID Purchase price Misprint Altered Condition Language Purchase price currency
2 Tinybones, Bauble Burglar FDN Foundations 72 normal rare 1 101414 ff3d85bc-ef2d-4251-baf4-a14bd0cee61e 0.66 false false near_mint en USD
3 Scrawling Crawler FDN Foundations 132 normal rare 1 100912 a1176dcf-40ee-4342-aa74-791b8352e99a 4.81 false false near_mint en USD
4 Giada, Font of Hope FDN Foundations 141 normal rare 1 100804 8ae6fc26-cfad-4da8-98d9-49c27c24d293 1.33 false false near_mint en USD
5 Blasphemous Edict FDN Foundations 57 normal rare 1 100168 11040ecd-3153-4029-b42b-1441bc51ec34 6.9 false false near_mint en USD
6 Drakuseth, Maw of Flames FDN Foundations 193 normal rare 1 100092 029b1edb-e1de-4f1c-81df-8d17f4920318 0.33 false false near_mint en USD
7 Koma, World-Eater FDN Foundations 347 normal rare 1 100792 8889e1ca-eec1-408b-b11e-98cc0a357a97 4.69 false false near_mint en USD
8 Ghalta, Primal Hunger FDN Foundations 222 normal rare 1 100635 6a9c39e4-a8cf-42dd-8d0e-45634b335546 0.54 false false near_mint en USD
9 Sire of Seven Deaths FDN Foundations 1 normal mythic 1 100812 8d8432a7-1c8a-4cfb-947c-ecf9791063eb 18.63 false false near_mint en USD
10 Hero's Downfall FDN Foundations 319 normal uncommon 1 101639 10cedc6d-075a-4f9b-a858-e2c29809ee33 0.39 false false near_mint en USD
11 Etali, Primal Storm FDN Foundations 194 normal rare 1 101037 b6af9894-95b5-4c8e-902f-a9ba70f02e4a 0.32 false false near_mint en USD
12 High Fae Trickster FDN Foundations 307 normal rare 1 100918 a21180a4-208f-4c13-a704-58403ddaf12f 3.39 false false near_mint en USD
13 Mocking Sprite FDN Foundations 159 foil common 1 101624 f6792f63-b651-497d-8aa5-cddf4cedeca8 0.09 false false near_mint en USD
14 Bake into a Pie FDN Foundations 169 foil common 1 101494 2ab0e660-86a3-4b92-82fa-77dcb5db947d 0.06 false false near_mint en USD
15 Boltwave FDN Foundations 79 foil uncommon 1 100810 8d1ec351-5e70-4eb2-b590-6bff94ef8178 4.27 false false near_mint en USD
16 Jungle Hollow FDN Foundations 263 foil common 1 101224 dc758e14-d370-45e4-bbc5-938fb4d21127 0.08 false false near_mint en USD
17 Ambush Wolf FDN Foundations 98 foil common 1 101492 2903832c-318e-42ab-bf58-c682ec2f7afd 0.03 false false near_mint en USD
18 An Offer You Can't Refuse FDN Foundations 160 foil uncommon 1 100948 a829747f-cf9b-4d81-ba66-9f0630ed4565 1.51 false false near_mint en USD
19 Sower of Chaos FDN Foundations 95 foil common 1 101556 7ff50606-491c-4946-8d03-719b01cfad77 0.02 false false near_mint en USD
20 Guarded Heir FDN Foundations 14 foil uncommon 1 100505 525ba5c7-3ce5-4e52-b8b5-96c9040a6738 0.06 false false near_mint en USD
21 Wind-Scarred Crag FDN Foundations 271 foil common 1 100684 759e99df-11a8-4aee-b6bc-344e84e10d94 0.08 false false near_mint en USD
22 Think Twice FDN Foundations 165 foil common 1 101202 d88faaa1-eb41-40f7-991c-5c06e1138f3d 0.03 false false near_mint en USD
23 Grow from the Ashes FDN Foundations 225 foil common 1 101502 42525f8a-aee7-4811-8f05-471b559c2c4a 0.07 false false near_mint en USD
24 Spitfire Lagac FDN Foundations 208 foil common 1 101496 30f600cd-b696-4f49-9cbc-5a33aa43d04c 0.05 false false near_mint en USD
25 Abyssal Harvester FDN Foundations 54 foil rare 1 101342 f2e0f538-5825-47e9-883c-3ec6fd5b25ea 3.18 false false near_mint en USD
26 Sanguine Syphoner FDN Foundations 68 foil common 1 101582 b1daf5bb-c8e9-4e79-a532-ca92a9a885cd 0.19 false false near_mint en USD
27 Goldvein Pick FDN Foundations 253 foil common 1 101572 a241317d-2277-467e-a8f9-aa71c944e244 0.06 false false near_mint en USD
28 Goblin Negotiation FDN Foundations 88 foil uncommon 1 101335 f2016585-e26c-4d13-b09f-af6383c192f7 0.14 false false near_mint en USD
29 Banishing Light FDN Foundations 138 foil common 1 101613 e38dc3b3-1629-491b-8afd-0e7a9a857713 0.05 false false near_mint en USD
30 Dauntless Veteran FDN Foundations 8 foil uncommon 1 100704 7a136f26-ac66-407f-b389-357222d2c4a2 0.06 false false near_mint en USD
31 Run Away Together FDN Foundations 162 foil common 1 101614 e598eb7b-10dc-49e6-ac60-2fefa987173e 0.02 false false near_mint en USD
32 Tatyova, Benthic Druid FDN Foundations 247 foil uncommon 1 101301 eabc978a-0666-472d-bdc6-d4b29d29eca4 0.14 false false near_mint en USD
33 Balmor, Battlemage Captain FDN Foundations 237 foil uncommon 1 100142 0b45ab13-9bb6-48af-8b37-d97b25801ac8 0.13 false false near_mint en USD
34 Involuntary Employment FDN Foundations 203 foil common 1 101622 f3ad3d62-2f24-4562-b3fa-809213dbc4a4 0.03 false false near_mint en USD
35 Dwynen, Gilt-Leaf Daen FDN Foundations 217 foil uncommon 1 100086 01c00d7b-7fac-4f8c-a1ea-de2cf4d06627 0.23 false false near_mint en USD
36 Swiftfoot Boots FDN Foundations 258 foil uncommon 1 100414 41040541-b129-4cf4-9411-09b1d9d32c19 2.03 false false near_mint en USD
37 Soul-Shackled Zombie FDN Foundations 70 foil common 1 101609 deea5690-6eb2-4353-b917-cbbf840e4e71 0.05 false false near_mint en USD
38 Fake Your Own Death FDN Foundations 174 foil common 1 101539 693635a6-df50-44c5-9598-0c79b45d4df4 0.09 false false near_mint en USD
39 Gnarlid Colony FDN Foundations 224 foil common 1 101508 47565d10-96bf-4fb0-820f-f20a44a76b6f 0.05 false false near_mint en USD
40 Apothecary Stomper FDN Foundations 99 foil common 1 101537 680b7b0c-0e1b-46ce-9917-9fc6e05aa148 0.02 false false near_mint en USD
41 Rugged Highlands FDN Foundations 265 foil common 1 101400 fd6eaf8e-8881-4d7b-bafc-75e4ca5cbef6 0.05 false false near_mint en USD
42 Firebrand Archer FDN Foundations 196 foil common 1 101630 fe0312f1-4c98-4b7f-8a34-0059ea80edef 0.13 false false near_mint en USD
43 Scoured Barrens FDN Foundations 266 foil common 1 100277 2632a4b2-9ca6-4b67-9a99-14f52ad3dc41 0.12 false false near_mint en USD
44 Courageous Goblin FDN Foundations 82 foil common 1 101566 8db6819c-666a-409d-85a5-b9ac34d8dd2f 0.02 false false near_mint en USD
45 Jungle Hollow FDN Foundations 263 normal common 1 101224 dc758e14-d370-45e4-bbc5-938fb4d21127 0.07 false false near_mint en USD
46 Wind-Scarred Crag FDN Foundations 271 normal common 1 100684 759e99df-11a8-4aee-b6bc-344e84e10d94 0.04 false false near_mint en USD
47 Dismal Backwater FDN Foundations 261 normal common 1 101220 dbb0df36-8467-4a41-8e1c-6c3584d4fd10 0.06 false false near_mint en USD
48 Bloodfell Caves FDN Foundations 259 normal common 1 100806 8b90dc92-cb66-41d9-89f9-2b6e3cfc8082 0.05 false false near_mint en USD
49 Rugged Highlands FDN Foundations 265 normal common 1 101400 fd6eaf8e-8881-4d7b-bafc-75e4ca5cbef6 0.05 false false near_mint en USD
50 Scavenging Ooze FDN Foundations 232 normal rare 1 100808 8c504c23-1e9a-411b-9cfe-4180d0c744f6 0.15 false false near_mint en USD
51 Kiora, the Rising Tide FDN Foundations 45 normal rare 1 100762 83f20a32-9f5d-4a68-8995-549e57554da2 1.57 false false near_mint en USD
52 Curator of Destinies FDN Foundations 34 normal rare 1 100908 9ff79da7-c3f7-4541-87a0-503544c699b5 0.12 false false near_mint en USD
53 Loot, Exuberant Explorer FDN Foundations 106 normal rare 1 100131 09980ce6-425b-4e03-94d0-0f02043cb361 4.8 false false near_mint en USD
54 Micromancer FDN Foundations 158 normal uncommon 1 101274 e6af54ea-b57a-4e50-8e46-1747cca14430 0.07 false false near_mint en USD
55 Ruby, Daring Tracker FDN Foundations 245 normal uncommon 1 101405 fe3e7dd2-b66d-4218-9fde-f84bec26b7bf 0.05 false false near_mint en USD
56 Mild-Mannered Librarian FDN Foundations 228 normal uncommon 1 100515 5389663a-fe25-41b9-8c92-1f4d7721ffc2 0.03 false false near_mint en USD
57 Guarded Heir FDN Foundations 14 normal uncommon 1 100505 525ba5c7-3ce5-4e52-b8b5-96c9040a6738 0.05 false false near_mint en USD
58 Garruk's Uprising FDN Foundations 220 normal uncommon 1 100447 4805c303-e73b-443b-a09f-49d2c2c88bb5 0.25 false false near_mint en USD
59 Vampire Nighthawk FDN Foundations 186 normal uncommon 1 101474 0a1934ab-3171-4fc6-8033-ad998899ba73 0.12 false false near_mint en USD
60 Soulstone Sanctuary FDN Foundations 133 normal rare 1 100596 642553a7-6d0f-483d-a873-3a703786db42 1.9 false false near_mint en USD
61 Balmor, Battlemage Captain FDN Foundations 237 normal uncommon 1 100142 0b45ab13-9bb6-48af-8b37-d97b25801ac8 0.07 false false near_mint en USD
62 Adventuring Gear FDN Foundations 249 normal uncommon 1 100358 361f9b99-5b5d-40da-b4b9-5ad90f6280ee 0.06 false false near_mint en USD
63 Grappling Kraken FDN Foundations 39 normal uncommon 1 101165 d1f5cab3-3fc0-448d-8252-cd55abf5b596 0.12 false false near_mint en USD
64 Quakestrider Ceratops FDN Foundations 110 normal uncommon 1 100120 067f72c2-ead6-4879-bc9d-696c9f87c0b2 0.11 false false near_mint en USD
65 Genesis Wave FDN Foundations 221 normal rare 1 101177 d46f7ddb-f986-4f1f-b096-ae1a02d0bdc8 0.29 false false near_mint en USD
66 Lathril, Blade of the Elves FDN Foundations 242 normal rare 1 100811 8d4e5480-a287-4a25-b855-a26dae555b1c 0.25 false false near_mint en USD
67 Elvish Archdruid FDN Foundations 219 normal rare 1 100341 341da856-7414-403b-b2e3-4bebd58a5aa4 0.4 false false near_mint en USD
68 Imprisoned in the Moon FDN Foundations 156 normal uncommon 1 101313 ee28e147-6622-4399-a314-c14a5c912dd0 0.18 false false near_mint en USD
69 Inspiring Call FDN Foundations 226 normal uncommon 1 100400 3e241642-5172-4437-b694-f6aa159d5cd9 0.15 false false near_mint en USD
70 Essence Scatter FDN Foundations 153 normal uncommon 1 101226 dd05c850-f91e-4ffb-b4cc-8418d49dad90 0.04 false false near_mint en USD
71 Exemplar of Light FDN Foundations 11 normal rare 1 100832 920c8fc5-fdd2-446a-a676-5c363f96928f 2.82 false false near_mint en USD
72 Meteor Golem FDN Foundations 256 normal uncommon 1 101167 d291ea1e-36bc-46b3-b3ae-084fa0ba69eb 0.05 false false near_mint en USD
73 Swiftfoot Boots FDN Foundations 258 normal uncommon 1 100414 41040541-b129-4cf4-9411-09b1d9d32c19 1.19 false false near_mint en USD
74 Brazen Scourge FDN Foundations 191 normal uncommon 1 101616 eb84b86c-3276-4fc1-a09d-47de388cb729 0.02 false false near_mint en USD
75 Sylvan Scavenging FDN Foundations 113 normal rare 1 101100 c35b683c-d3b2-46a1-876a-81b34e8ba2fc 0.25 false false near_mint en USD
76 Claws Out FDN Foundations 6 normal uncommon 1 100429 4396049c-b976-4b7f-8ecd-564e24ebd631 0.1 false false near_mint en USD
77 Snakeskin Veil FDN Foundations 233 normal uncommon 1 100645 6cc4c21d-9bdc-4490-9203-17f51db0ddd1 0.08 false false near_mint en USD
78 Skyship Buccaneer FDN Foundations 50 normal uncommon 1 100587 62958fc3-55dc-4b97-a070-490d6ed27820 0.02 false false near_mint en USD
79 Arcane Epiphany FDN Foundations 29 normal uncommon 1 100116 06431793-5dfe-4cbf-990b-4bcc960d1f31 0.03 false false near_mint en USD
80 Brass's Bounty FDN Foundations 190 normal rare 1 100610 65fe7127-b0ec-400f-97f1-6e17ab8e319d 0.14 false false near_mint en USD
81 Fiendish Panda FDN Foundations 120 normal uncommon 1 100483 4e434d74-cad0-45f5-bc8d-f34aa5e1d879 0.09 false false near_mint en USD
82 Frenzied Goblin FDN Foundations 199 normal uncommon 1 101602 d5592573-2889-40b1-b1d5-c2802482549a 0.03 false false near_mint en USD
83 Lunar Insight FDN Foundations 46 normal rare 1 100958 a9a159f6-fecf-4bdd-b2f8-a9665a5cc32d 0.25 false false near_mint en USD
84 Twinblade Blessing FDN Foundations 26 normal uncommon 1 101310 ecf01cbe-9fcb-4f35-bc6b-2280620b06ff 0.1 false false near_mint en USD
85 Tatyova, Benthic Druid FDN Foundations 247 normal uncommon 1 101301 eabc978a-0666-472d-bdc6-d4b29d29eca4 0.06 false false near_mint en USD
86 Dragon Trainer FDN Foundations 84 normal uncommon 1 100830 91bd75a1-cb54-4e38-9ce1-e8f32a73c6eb 0.04 false false near_mint en USD
87 Raise the Past FDN Foundations 22 normal rare 1 100641 6c6be129-56da-4fe7-a6bd-6a1d402c09e1 2.27 false false near_mint en USD
88 Divine Resilience FDN Foundations 10 normal uncommon 1 101347 f3a08245-a535-4d24-b8c0-78759bb9c4b0 0.11 false false near_mint en USD
89 Bulk Up FDN Foundations 80 normal uncommon 1 100857 977dcc50-da10-4281-b522-9240c1204f5d 0.2 false false near_mint en USD
90 Diregraf Ghoul FDN Foundations 171 normal uncommon 1 100439 4682012c-d7e0-4257-b538-3de497507464 0.03 false false near_mint en USD
91 Drake Hatcher FDN Foundations 35 normal rare 1 101071 bcaf4196-6bf3-47fa-b5c7-0e77f45cf820 0.12 false false near_mint en USD
92 Youthful Valkyrie FDN Foundations 149 normal uncommon 1 100894 9d795f79-c3a5-4ea1-a5cf-1ce73d6837b6 0.14 false false near_mint en USD
93 Seeker's Folly FDN Foundations 69 normal uncommon 1 101067 bc359da6-8b7f-45ec-b530-ce159fc35953 0.06 false false near_mint en USD
94 Heroic Reinforcements FDN Foundations 241 normal uncommon 1 100631 6a05e8d5-c2ad-489a-888d-22622886b620 0.04 false false near_mint en USD
95 Inspiration from Beyond FDN Foundations 43 normal uncommon 1 101033 b636fe95-664f-4fb1-aab9-28856edeccd6 0.04 false false near_mint en USD
96 Dwynen, Gilt-Leaf Daen FDN Foundations 217 normal uncommon 1 100086 01c00d7b-7fac-4f8c-a1ea-de2cf4d06627 0.14 false false near_mint en USD
97 Twinflame Tyrant FDN Foundations 97 normal mythic 1 100228 1eb34f51-0bd2-43c3-af95-2ce8dabcc7bb 17.77 false false near_mint en USD
98 Sun-Blessed Healer FDN Foundations 25 normal uncommon 1 100332 323d029e-9a88-4188-b3a4-38ef32cffc9f 0.09 false false near_mint en USD
99 Seismic Rupture FDN Foundations 205 normal uncommon 1 100268 2519a51a-26a0-4884-9ba8-9db135c9ee49 0.02 false false near_mint en USD
100 Slumbering Cerberus FDN Foundations 94 normal uncommon 1 100892 9d06faa8-201d-45db-b398-ad56f7b01848 0.03 false false near_mint en USD
101 Tragic Banshee FDN Foundations 73 normal uncommon 1 100324 30df3e33-2f17-4067-99f1-5db6b0f41fd4 0.03 false false near_mint en USD
102 Stromkirk Bloodthief FDN Foundations 185 normal uncommon 1 97176 485d6a5a-2054-47d5-91b8-71ce308ed4dc 0.04 false false near_mint en USD
103 Blanchwood Armor FDN Foundations 213 normal uncommon 1 100237 1fd7ec1a-dafa-42ca-bc25-f6848fb03f60 0.07 false false near_mint en USD
104 Spectral Sailor FDN Foundations 164 normal uncommon 1 100100 03a49535-c5f3-4a6f-b333-7ac7bffdc9ae 0.06 false false near_mint en USD
105 Extravagant Replication FDN Foundations 154 normal rare 1 100634 6a41dfae-bc7e-4105-8f7e-fd0109197ad8 0.43 false false near_mint en USD
106 Electroduplicate FDN Foundations 85 normal rare 1 100976 abb06b1c-5d4e-49b9-9c4a-e60ab656a257 0.3 false false near_mint en USD
107 Angel of Finality FDN Foundations 136 normal uncommon 1 101057 baaabd52-3aa9-4e2f-9369-d4db8b405ba8 0.07 false false near_mint en USD
108 Battlesong Berserker FDN Foundations 78 normal uncommon 1 100917 a1f8b199-5d62-485f-b1c3-b30aa550595b 0.03 false false near_mint en USD
109 Swiftblade Vindicator FDN Foundations 246 normal rare 1 101372 f94618ec-000c-4371-b925-05ff82bfe221 0.12 false false near_mint en USD
110 Dauntless Veteran FDN Foundations 8 normal uncommon 1 100704 7a136f26-ac66-407f-b389-357222d2c4a2 0.05 false false near_mint en USD
111 Hero's Downfall FDN Foundations 175 normal uncommon 1 97185 ad2c01d9-8f54-46c0-9dc9-d4d4764ce1c9 0.1 false false near_mint en USD
112 Resolute Reinforcements FDN Foundations 145 normal uncommon 1 100841 940f3989-77cc-49a9-92e0-095a75d80f0f 0.09 false false near_mint en USD
113 Zombify FDN Foundations 187 normal uncommon 1 101225 dc798e6f-13c4-457c-b052-b7b65bc83cfe 0.09 false false near_mint en USD
114 Fiery Annihilation FDN Foundations 86 normal uncommon 1 100523 54fe00aa-d284-48f9-b5a2-1bd4c5fa8e58 0.07 false false near_mint en USD
115 Clinquant Skymage FDN Foundations 33 normal uncommon 1 100357 36012810-0e83-4640-8ba7-7262229f1b84 0.05 false false near_mint en USD
116 Consuming Aberration FDN Foundations 238 normal rare 1 101066 bc2b28fd-66b0-457c-80ea-7caed2cc7926 0.16 false false near_mint en USD
117 Fishing Pole FDN Foundations 128 normal uncommon 1 101128 c95ab836-3277-4223-9aaa-ef2c77256b65 0.07 false false near_mint en USD
118 Felling Blow FDN Foundations 105 normal uncommon 1 100854 96948ae3-b15d-4d6d-aa73-9f52084cd903 0.05 false false near_mint en USD
119 Abrade FDN Foundations 188 normal uncommon 1 100522 548947dc-a5ca-43b5-9531-bcef20fa4ae5 0.09 false false near_mint en USD
120 Spinner of Souls FDN Foundations 112 normal rare 1 101358 f50a8dec-b079-4192-9098-6cdc1026c693 0.66 false false near_mint en USD
121 Vampire Gourmand FDN Foundations 74 normal uncommon 1 100827 917514c0-9cd5-4b97-85b9-c4f753560ad4 0.09 false false near_mint en USD
122 Needletooth Pack FDN Foundations 108 normal uncommon 1 100868 993c1679-e02b-44f2-b34e-12fd6b5142e9 0.05 false false near_mint en USD
123 Burnished Hart FDN Foundations 250 normal uncommon 1 100609 65ebbff0-fbe6-4310-a33f-e00bb2534979 0.06 false false near_mint en USD
124 Arbiter of Woe FDN Foundations 55 normal uncommon 1 101008 b2496c4a-df03-4583-bd76-f98ed5cb61ee 0.06 false false near_mint en USD
125 Good-Fortune Unicorn FDN Foundations 240 normal uncommon 1 101300 eabbe163-2b15-42e3-89ce-7363e6250d3a 0.1 false false near_mint en USD
126 Reassembling Skeleton FDN Foundations 182 normal uncommon 1 100291 28e84b1b-1c05-4e1b-93b8-9cc2ca73509d 0.08 false false near_mint en USD
127 Reclamation Sage FDN Foundations 231 normal uncommon 1 100197 1918ea65-ab7f-4d40-97fd-a656c892a2a1 0.14 false false near_mint en USD
128 Leyline Axe FDN Foundations 129 normal rare 1 101052 b9c03336-a321-4c06-94d1-809f328fabd8 3.17 false false near_mint en USD
129 An Offer You Can't Refuse FDN Foundations 160 normal uncommon 1 100948 a829747f-cf9b-4d81-ba66-9f0630ed4565 0.99 false false near_mint en USD
130 Goblin Negotiation FDN Foundations 88 normal uncommon 1 101335 f2016585-e26c-4d13-b09f-af6383c192f7 0.09 false false near_mint en USD
131 Empyrean Eagle FDN Foundations 239 normal uncommon 1 100533 577e99a7-4a55-4314-8f08-2ae0c33b85c7 0.08 false false near_mint en USD
132 Solemn Simulacrum FDN Foundations 257 normal rare 1 100514 5383f45e-3da2-40fb-beee-801448bbb60f 0.3 false false near_mint en USD
133 Crystal Barricade FDN Foundations 7 normal rare 1 100822 905d3e02-ea06-45e7-9adb-c8e7583323a2 1.24 false false near_mint en USD
134 Hidetsugu's Second Rite FDN Foundations 202 normal uncommon 1 100577 609421da-8d89-4365-b18b-778832d91482 0.04 false false near_mint en USD
135 Affectionate Indrik FDN Foundations 211 normal uncommon 1 100310 2da8347d-06a4-46e0-a55e-cc2da4660263 0.02 false false near_mint en USD
136 Infernal Vessel FDN Foundations 63 normal uncommon 1 101560 877b6330-2d0b-4f2f-a848-f10b06fb4ef5 0.06 false false near_mint en USD
137 Zimone, Paradox Sculptor FDN Foundations 126 normal mythic 1 100241 20ccbfdd-ddae-440c-9bc0-38b15a56fdd1 2.13 false false near_mint en USD
138 High-Society Hunter FDN Foundations 61 normal rare 1 100501 51da4a4b-ea12-4169-a7cf-eb4427f13e84 0.64 false false near_mint en USD
139 Heraldic Banner FDN Foundations 254 normal uncommon 1 100678 743ea709-dbb3-4db8-a2ce-544f47eb6339 0.24 false false near_mint en USD
140 Wardens of the Cycle FDN Foundations 125 normal uncommon 1 100761 83ea9b2c-5723-4eff-88ac-6669975939e3 0.07 false false near_mint en USD
141 Preposterous Proportions FDN Foundations 109 normal rare 1 100983 acb65189-60e4-42e0-9fb1-da6b716b91d7 0.94 false false near_mint en USD
142 Savannah Lions FDN Foundations 146 normal uncommon 1 97184 9c9ac1bc-cdf3-4fa6-8319-a7ea164e9e47 0.04 false false near_mint en USD
143 Secluded Courtyard FDN Foundations 267 normal uncommon 1 101161 d13373d2-139b-48c7-a8c9-828cefc4f150 0.12 false false near_mint en USD
144 Ajani's Pridemate FDN Foundations 135 normal uncommon 1 100255 222c1a68-e34c-4103-b1be-17d4ceaef6ce 0.06 false false near_mint en USD
145 Arahbo, the First Fang FDN Foundations 2 normal rare 1 100503 524a5d93-26ed-436d-a437-dc9460acce98 1.0 false false near_mint en USD
146 Authority of the Consuls FDN Foundations 137 normal rare 1 100425 42ce2d7f-5924-47c0-b5ed-dacf9f9617a0 5.3 false false near_mint en USD
147 Nine-Lives Familiar FDN Foundations 321 normal rare 1 100060 6cc1623f-370d-42b5-88a2-039f31e9be0b 2.67 false false near_mint en USD
148 Ajani's Pridemate FDN Foundations 293 foil uncommon 1 101180 d4cfb9bc-4273-4e5f-a7ac-2006a8345a4e 0.38 false false near_mint en USD
149 Helpful Hunter FDN Foundations 16 foil common 1 97172 1b9a0e91-80b5-428f-8f08-931d0631be14 1.61 false false near_mint en USD
150 Felidar Savior FDN Foundations 12 foil common 1 97191 cd092b14-d72f-4de0-8f19-1338661b9e3b 0.05 false false near_mint en USD
151 Thrill of Possibility FDN Foundations 210 normal common 3 101561 882b348c-076b-41d8-b505-063480636669 0.03 false false near_mint en USD
152 Lightshell Duo FDN Foundations 157 normal common 7 101063 bb75315c-ea8f-4eb0-899e-c73ef75fc396 0.04 false false near_mint en USD
153 Mischievous Pup FDN Foundations 144 normal uncommon 2 100670 7214d984-6400-44d7-bde6-57d96b606e78 0.04 false false near_mint en USD
154 Swiftwater Cliffs FDN Foundations 268 normal common 3 101389 fb88667d-7088-4889-960f-317486ebe856 0.03 false false near_mint en USD
155 Hare Apparent FDN Foundations 15 normal common 3 100907 9fc6f0e9-eb5f-4bc0-b3d7-756644b66d12 3.62 false false near_mint en USD
156 Dazzling Angel FDN Foundations 9 normal common 3 101468 027dc444-e544-4693-8653-3dcdda530162 0.1 false false near_mint en USD
157 Bigfin Bouncer FDN Foundations 31 normal common 3 100882 9b1d5b76-b07e-45c6-800d-4cfce085164f 0.02 false false near_mint en USD
158 Ambush Wolf FDN Foundations 98 normal common 4 101492 2903832c-318e-42ab-bf58-c682ec2f7afd 0.05 false false near_mint en USD
159 Healer's Hawk FDN Foundations 142 normal common 3 101595 cc8e4563-04bb-46b5-835e-64ba11c0e972 0.09 false false near_mint en USD
160 Rune-Sealed Wall FDN Foundations 49 normal uncommon 2 101212 da0f147b-95ed-4f32-9b46-6a633ae31976 0.15 false false near_mint en USD
161 Pilfer FDN Foundations 181 normal common 4 101564 8c7c88b5-6d09-453b-b9c1-7dcbba8f1080 0.03 false false near_mint en USD
162 Stab FDN Foundations 71 normal common 3 101538 6859a5ba-1c1c-4631-bba8-f9900b827178 0.04 false false near_mint en USD
163 Heartfire Immolator FDN Foundations 201 normal uncommon 2 100390 3ca38f4d-01f5-4a02-9000-01261a440dbf 0.03 false false near_mint en USD
164 Marauding Blight-Priest FDN Foundations 178 normal common 3 101528 5f70dafc-c638-4ec0-ab5b-62998f752720 0.12 false false near_mint en USD
165 Broken Wings FDN Foundations 214 normal common 3 100584 61f9cbeb-cc9c-4562-be65-8a77053faefe 0.02 false false near_mint en USD
166 Firespitter Whelp FDN Foundations 197 normal uncommon 2 100463 4b3a4c7d-3126-4bde-9dca-cb6a1e2f37c9 0.15 false false near_mint en USD
167 Make Your Move FDN Foundations 143 normal common 3 101546 7368f861-3288-4645-90a7-ca35d6da3721 0.03 false false near_mint en USD
168 Treetop Snarespinner FDN Foundations 114 normal common 4 101562 88e68fa3-159d-49a6-8ac6-afc9bd6f1718 0.06 false false near_mint en USD
169 Vengeful Bloodwitch FDN Foundations 76 normal uncommon 2 97189 bd0c12dd-f138-45c0-9614-d83a1d8e8399 0.17 false false near_mint en USD
170 Evolving Wilds FDN Foundations 262 normal common 4 100376 3a0b9356-5b91-4542-8802-f0f7275238e1 0.06 false false near_mint en USD
171 Bite Down FDN Foundations 212 normal common 3 101625 f8d70b3b-f6f9-4b3c-ad70-0ce369e812b5 0.04 false false near_mint en USD
172 Elfsworn Giant FDN Foundations 103 normal common 3 100497 5128a5be-ffa6-4998-8488-872d80b24cb2 0.06 false false near_mint en USD
173 Apothecary Stomper FDN Foundations 99 normal common 3 101537 680b7b0c-0e1b-46ce-9917-9fc6e05aa148 0.05 false false near_mint en USD
174 Axgard Cavalry FDN Foundations 189 normal common 3 101631 fe3cc41a-adae-4c9b-b4d3-03f3ca862fed 0.03 false false near_mint en USD
175 Wary Thespian FDN Foundations 235 normal common 3 101574 a3d62d04-0974-4cb5-9a35-5e996c6456e2 0.01 false false near_mint en USD
176 Fleeting Flight FDN Foundations 13 normal common 3 101513 55139100-9342-41fd-b10a-8e9932e605d4 0.04 false false near_mint en USD
177 Quick-Draw Katana FDN Foundations 130 normal common 3 101540 69beec98-c89c-4673-953c-8b3ef3d81560 0.07 false false near_mint en USD
178 Goblin Surprise FDN Foundations 200 normal common 3 101512 527dd5d4-5f72-40bb-8a9d-1f5ac3f81e2e 0.05 false false near_mint en USD
179 Sower of Chaos FDN Foundations 95 normal common 4 101556 7ff50606-491c-4946-8d03-719b01cfad77 0.01 false false near_mint en USD
180 Involuntary Employment FDN Foundations 203 normal common 4 101622 f3ad3d62-2f24-4562-b3fa-809213dbc4a4 0.06 false false near_mint en USD
181 Burst Lightning FDN Foundations 192 normal common 3 100994 aec5d380-d354-4750-931a-6c91853e2edc 0.08 false false near_mint en USD
182 Banishing Light FDN Foundations 138 normal common 4 101613 e38dc3b3-1629-491b-8afd-0e7a9a857713 0.03 false false near_mint en USD
183 Blossoming Sands FDN Foundations 260 normal common 2 100364 37676ed8-588c-4bca-8065-874b74d84807 0.05 false false near_mint en USD
184 Felidar Savior FDN Foundations 12 normal common 3 97191 cd092b14-d72f-4de0-8f19-1338661b9e3b 0.02 false false near_mint en USD
185 Revenge of the Rats FDN Foundations 67 normal uncommon 2 100232 1f463c55-39a0-4f2f-aae3-0c5540bde5b7 0.12 false false near_mint en USD
186 Armasaur Guide FDN Foundations 3 normal common 3 101591 c80fc380-0499-4499-8a60-c43844c02c9b 0.03 false false near_mint en USD
187 Campus Guide FDN Foundations 251 normal common 3 101504 43c59814-3167-4b05-bb85-6c736f3956a4 0.02 false false near_mint en USD
188 Dreadwing Scavenger FDN Foundations 118 normal uncommon 2 101252 e24d838b-ab48-410a-9a50-dbfea5da089b 0.04 false false near_mint en USD
189 Gleaming Barrier FDN Foundations 252 normal common 3 101479 1b49b009-e6f2-494a-9235-f5c25c2d70a9 0.06 false false near_mint en USD
190 Scoured Barrens FDN Foundations 266 normal common 2 100277 2632a4b2-9ca6-4b67-9a99-14f52ad3dc41 0.07 false false near_mint en USD
191 Erudite Wizard FDN Foundations 37 normal common 3 100835 9273c417-0fcd-4273-b24e-afff76336d0c 0.01 false false near_mint en USD
192 Gorehorn Raider FDN Foundations 89 normal common 3 101551 78ce6c40-3452-4aa0-a45b-dbfd70f8d220 0.02 false false near_mint en USD
193 Cackling Prowler FDN Foundations 101 normal common 3 101481 1bd8e971-c075-4203-8d83-c28f22d4f9b9 0.03 false false near_mint en USD
194 Burglar Rat FDN Foundations 170 normal common 4 101608 de1c8758-ce3d-49cf-8173-c0eb46f5e7bc 0.05 false false near_mint en USD
195 Mocking Sprite FDN Foundations 159 normal common 3 101624 f6792f63-b651-497d-8aa5-cddf4cedeca8 0.03 false false near_mint en USD
196 Cathar Commando FDN Foundations 139 normal common 3 100204 19cf024d-edb6-4a79-8676-73f8db0cdf1f 0.06 false false near_mint en USD
197 Hungry Ghoul FDN Foundations 62 normal common 3 100701 790f9433-7565-4f7f-88e8-8af762ea0296 0.04 false false near_mint en USD
198 Vampire Soulcaller FDN Foundations 75 normal common 3 101495 2d076293-3b45-4878-8f67-978927cc1f68 0.04 false false near_mint en USD
199 Exsanguinate FDN Foundations 173 normal uncommon 1 101330 f11d7311-4066-4a5d-ba28-9857fa707a0b 0.4 false false near_mint en USD
200 Fanatical Firebrand FDN Foundations 195 normal common 3 101598 d1296316-7781-4e98-95e6-7020648be6a5 0.03 false false near_mint en USD
201 Sanguine Syphoner FDN Foundations 68 normal common 4 101582 b1daf5bb-c8e9-4e79-a532-ca92a9a885cd 0.07 false false near_mint en USD
202 Boltwave FDN Foundations 79 normal uncommon 2 100810 8d1ec351-5e70-4eb2-b590-6bff94ef8178 4.08 false false near_mint en USD
203 Nessian Hornbeetle FDN Foundations 229 normal uncommon 2 100395 3d4d93de-85c6-4653-8ddd-d8bf21516d44 0.05 false false near_mint en USD
204 Goldvein Pick FDN Foundations 253 normal common 3 101572 a241317d-2277-467e-a8f9-aa71c944e244 0.06 false false near_mint en USD
205 Icewind Elemental FDN Foundations 42 normal common 3 101629 fd0eba76-3829-408b-828f-0b223c884728 0.05 false false near_mint en USD
206 Fleeting Distraction FDN Foundations 155 normal common 3 101587 c0b86a7b-4912-43a7-ab89-c3432385baa1 0.02 false false near_mint en USD
207 Faebloom Trick FDN Foundations 38 normal uncommon 2 100148 0c3bee8f-f5be-4404-a696-c902637799c3 0.17 false false near_mint en USD
208 Brineborn Cutthroat FDN Foundations 152 normal uncommon 2 100986 acf7aafb-931f-49e5-8691-eab8cb34b05e 0.02 false false near_mint en USD
209 Gutless Plunderer FDN Foundations 60 normal common 3 101567 909d7778-c7f8-4fa4-89f2-8b32e86e96e4 0.05 false false near_mint en USD
210 Thornwood Falls FDN Foundations 269 normal common 2 100424 42799f51-0f8c-444b-974e-dae281a5c697 0.05 false false near_mint en USD
211 Tranquil Cove FDN Foundations 270 normal common 2 100719 7c9cabca-5bcc-4b97-b2ac-a345ad3ee43c 0.06 false false near_mint en USD
212 Fake Your Own Death FDN Foundations 174 normal common 3 101539 693635a6-df50-44c5-9598-0c79b45d4df4 0.05 false false near_mint en USD
213 Crypt Feaster FDN Foundations 59 normal common 4 100382 3b072811-998a-4a71-b59c-6afecc0dc4b6 0.03 false false near_mint en USD
214 Incinerating Blast FDN Foundations 90 normal common 3 101603 d58e20ab-c5ca-4295-884d-78efdaa83243 0.03 false false near_mint en USD
215 Refute FDN Foundations 48 normal common 3 100368 38806934-dd9c-4ad4-a59c-a16dce03a14a 0.06 false false near_mint en USD
216 Tolarian Terror FDN Foundations 167 normal common 3 100270 2569d4f3-55ed-4f99-9592-34c7df0aab72 0.09 false false near_mint en USD
217 Joust Through FDN Foundations 19 normal uncommon 2 100767 846adb38-f9bb-4fed-b8ed-36ec7885f989 0.05 false false near_mint en USD
218 Bake into a Pie FDN Foundations 169 normal common 3 101494 2ab0e660-86a3-4b92-82fa-77dcb5db947d 0.03 false false near_mint en USD
219 Soul-Shackled Zombie FDN Foundations 70 normal common 4 101609 deea5690-6eb2-4353-b917-cbbf840e4e71 0.04 false false near_mint en USD
220 Perforating Artist FDN Foundations 124 normal uncommon 2 100674 72980409-53f0-43c1-965e-06f22e7bb608 0.1 false false near_mint en USD
221 Serra Angel FDN Foundations 147 normal uncommon 2 100391 3cee9303-9d65-45a2-93d4-ef4aba59141b 0.05 false false near_mint en USD
222 Squad Rallier FDN Foundations 24 normal common 3 101534 65e1ee86-6f08-4aa0-bf63-ae12028ef080 0.04 false false near_mint en USD
223 Elementalist Adept FDN Foundations 36 normal common 3 101605 d9768cc6-8f53-4922-ae32-376a2f32d719 0.02 false false near_mint en USD
224 Elvish Regrower FDN Foundations 104 normal uncommon 2 100278 2694e3cd-26ed-4a10-ae55-fb84d7800253 0.09 false false near_mint en USD
225 Infestation Sage FDN Foundations 64 normal common 3 101601 d40c73de-7a5f-46f2-a70b-449bc8ecfe24 0.07 false false near_mint en USD
226 Inspiring Paladin FDN Foundations 18 normal common 3 101472 0763be06-25b2-4d6b-ab33-a1af85aeb443 0.02 false false near_mint en USD
227 Luminous Rebuke FDN Foundations 20 normal common 3 101529 621839e1-2756-4cdc-a25c-5f76ea98dd87 0.07 false false near_mint en USD
228 Gnarlid Colony FDN Foundations 224 normal common 3 101508 47565d10-96bf-4fb0-820f-f20a44a76b6f 0.02 false false near_mint en USD
229 Sure Strike FDN Foundations 209 normal common 3 101525 5de6a1e4-5c66-43e6-9f2a-2635bdab03f6 0.03 false false near_mint en USD
230 Helpful Hunter FDN Foundations 16 normal common 3 97172 1b9a0e91-80b5-428f-8f08-931d0631be14 0.14 false false near_mint en USD
231 Goblin Boarders FDN Foundations 87 normal common 3 101506 4409a063-bf2a-4a49-803e-3ce6bd474353 0.04 false false near_mint en USD
232 Macabre Waltz FDN Foundations 177 normal common 3 101509 4d1f3c84-89ba-4426-a80b-d524f172c912 0.03 false false near_mint en USD
233 Grow from the Ashes FDN Foundations 225 normal common 3 101502 42525f8a-aee7-4811-8f05-471b559c2c4a 0.03 false false near_mint en USD
234 Stroke of Midnight FDN Foundations 148 normal uncommon 2 100970 ab135925-d924-456d-851a-6ccdaaf27271 0.17 false false near_mint en USD
235 Eaten Alive FDN Foundations 172 normal common 3 100216 1c4f7b20-b2a8-498c-8c36-dc296863b0b9 0.02 false false near_mint en USD
236 Aetherize FDN Foundations 151 normal uncommon 2 100225 1e5530fc-0291-4a17-b048-c5d24e6f51d8 0.17 false false near_mint en USD
237 Giant Growth FDN Foundations 223 normal common 4 101073 bd0bf74e-14c1-4428-88d8-2181a080b5d0 0.03 false false near_mint en USD
238 Billowing Shriekmass FDN Foundations 56 normal uncommon 2 100711 7b3587a9-0667-4d53-807b-c437bcb1d7b3 0.02 false false near_mint en USD
239 Think Twice FDN Foundations 165 normal common 4 101202 d88faaa1-eb41-40f7-991c-5c06e1138f3d 0.05 false false near_mint en USD
240 Beast-Kin Ranger FDN Foundations 100 normal common 3 100082 0102e0be-5783-4825-9489-713b1b1df0b2 0.05 false false near_mint en USD
241 Spitfire Lagac FDN Foundations 208 normal common 4 101496 30f600cd-b696-4f49-9cbc-5a33aa43d04c 0.02 false false near_mint en USD
242 Aegis Turtle FDN Foundations 150 normal common 3 101590 c7f2014a-fbc9-447c-a440-e06d01066bb9 0.08 false false near_mint en USD
243 Firebrand Archer FDN Foundations 196 normal common 3 101630 fe0312f1-4c98-4b7f-8a34-0059ea80edef 0.05 false false near_mint en USD
244 Shivan Dragon FDN Foundations 206 normal uncommon 2 100236 1fcff1e0-2745-448d-a27b-e31719e222e9 0.05 false false near_mint en USD
245 Cephalid Inkmage FDN Foundations 32 normal uncommon 2 101040 b7e47680-18c7-4ffb-aac4-c5db6e7095ba 0.05 false false near_mint en USD
246 Prideful Parent FDN Foundations 21 normal common 3 97188 b742117a-8a72-43b9-b05d-274829d138a2 0.04 false false near_mint en USD
247 Uncharted Voyage FDN Foundations 53 normal common 4 101611 e0846820-e595-4743-8a28-29c57d728677 0.01 false false near_mint en USD
248 Eager Trufflesnout FDN Foundations 102 normal uncommon 2 100940 a6e8433d-eb2a-43d1-b59b-7d70ff97c8e7 0.04 false false near_mint en USD
249 Juggernaut FDN Foundations 255 normal uncommon 2 101351 f4468fff-cd6f-428c-b7a0-ff89f5bbea2e 0.07 false false near_mint en USD
250 Llanowar Elves FDN Foundations 227 normal common 3 95583 6a0b230b-d391-4998-a3f7-7b158a0ec2cd 0.15 false false near_mint en USD
251 Overrun FDN Foundations 230 normal uncommon 2 100220 1d8e9cbb-8bf4-4a48-a58e-79deb3abdf7f 0.14 false false near_mint en USD
252 Crackling Cyclops FDN Foundations 83 normal common 3 101541 6e5b899a-52f7-471b-ad50-4fa6566758fd 0.01 false false near_mint en USD
253 Mischievous Mystic FDN Foundations 47 normal uncommon 2 100242 20d89cec-528b-4b2a-87db-e11ce0000622 0.14 false false near_mint en USD
254 Witness Protection FDN Foundations 168 normal common 3 101621 f231e981-0069-43ce-ac1c-c85ced613e93 0.08 false false near_mint en USD
255 Dwynen's Elite FDN Foundations 218 normal common 3 100800 89d94c28-ea2e-4a3d-935f-6b2d9f2efc7a 0.05 false false near_mint en USD
256 Bushwhack FDN Foundations 215 normal common 3 101469 03ebdb36-55e0-49dd-a514-785fbeb4ae19 0.1 false false near_mint en USD
257 Run Away Together FDN Foundations 162 normal common 3 101614 e598eb7b-10dc-49e6-ac60-2fefa987173e 0.05 false false near_mint en USD
258 Strongbox Raider FDN Foundations 96 normal uncommon 2 101006 b2223eb8-59f9-489b-a3f3-b6496218cb79 0.02 false false near_mint en USD
259 Vanguard Seraph FDN Foundations 28 normal common 4 101503 4329c861-fc16-4a96-9c03-25af6ac2adc8 0.06 false false near_mint en USD
260 Self-Reflection FDN Foundations 163 normal uncommon 2 101247 e1e6abc9-25b2-4d51-b519-2525079eab51 0.04 false false near_mint en USD
261 Strix Lookout FDN Foundations 52 normal common 3 101627 fbd2422e-8e84-4c39-af29-3b4d38baee63 0.03 false false near_mint en USD
262 Cat Collector FDN Foundations 4 normal uncommon 2 100507 526fe356-bff1-4211-9e88-bf913ac76b1d 0.1 false false near_mint en USD
263 Courageous Goblin FDN Foundations 82 normal common 3 101566 8db6819c-666a-409d-85a5-b9ac34d8dd2f 0.03 false false near_mint en USD
264 Ygra, Eater of All BLB Bloomburrow 241 normal mythic 1 95825 b9ac7673-eae8-4c4b-889e-5025213a6151 11.58 false false near_mint en USD
265 Lifecreed Duo BLB Bloomburrow 20 normal common 1 95968 ca543405-5e12-48a0-9a77-082ac9bcb2f2 0.06 false false near_mint en USD
266 Take Out the Trash BLB Bloomburrow 156 normal common 1 95940 7a1c6f00-af4c-4d35-b682-6c0e759df9a5 0.04 false false near_mint en USD
267 Ravine Raider BLB Bloomburrow 106 normal common 1 96370 874510be-7ecd-4eff-abad-b9594eb4821a 0.02 false false near_mint en USD
268 Longstalk Brawl BLB Bloomburrow 182 normal common 1 95966 c7ef748c-b5e5-4e7d-bf2e-d3e6c08edb42 0.04 false false near_mint en USD
269 Valley Floodcaller BLB Bloomburrow 79 normal rare 1 95876 90b12da0-f666-471d-95f5-15d8c9b31c92 2.65 false false near_mint en USD
270 Bandit's Talent BLB Bloomburrow 83 normal uncommon 1 95917 485dc8d8-9e44-4a0f-9ff6-fa448e232290 0.47 false false near_mint en USD
271 Brambleguard Veteran BLB Bloomburrow 165 normal uncommon 1 95880 bac9f6f8-6797-4580-9fc4-9a825872e017 0.09 false false near_mint en USD
272 Mouse Trapper BLB Bloomburrow 22 normal uncommon 1 95948 8ba1bc5a-03e7-44ec-893e-44042cbc02ef 0.04 false false near_mint en USD
273 Bushy Bodyguard BLB Bloomburrow 166 normal uncommon 1 95997 0de60cf7-fa82-4b6f-9f88-6590fba5c863 0.08 false false near_mint en USD
274 Valley Mightcaller BLB Bloomburrow 202 normal rare 1 96057 7256451f-0122-452a-88e8-0fb0f6bea3f3 1.01 false false near_mint en USD
275 Druid of the Spade BLB Bloomburrow 170 normal common 1 96054 6b485cf7-bad0-4824-9ba7-cb112ce4769f 0.02 false false near_mint en USD
276 Skyskipper Duo BLB Bloomburrow 71 normal common 1 96476 d6844bad-ffbe-4c6e-b438-08562eccea52 0.04 false false near_mint en USD
277 Osteomancer Adept BLB Bloomburrow 103 normal rare 1 95800 7d8238dd-858f-466c-96de-986bd66861d7 0.36 false false near_mint en USD
278 Tender Wildguide BLB Bloomburrow 196 normal rare 1 95792 6b8bfa91-adb0-4596-8c16-d8bb64fdb26d 0.49 false false near_mint en USD
279 Huskburster Swarm BLB Bloomburrow 98 normal uncommon 1 95978 ed2f61d7-4eb0-41c5-8a34-a0793c2abc51 0.13 false false near_mint en USD
280 Scrapshooter BLB Bloomburrow 191 normal rare 1 96113 c42ab407-e72d-4c48-9a9e-2055b5e71c69 0.38 false false near_mint en USD
281 Scavenger's Talent BLB Bloomburrow 111 normal rare 1 96084 9a52b7fe-87ae-425b-85fd-b24e6e0395f1 1.54 false false near_mint en USD
282 Valley Rotcaller BLB Bloomburrow 119 normal rare 1 95781 4da80a9a-b1d5-4fc5-92f7-36946195d0c7 1.45 false false near_mint en USD
283 Thornplate Intimidator BLB Bloomburrow 117 normal common 1 96019 42f66c4a-feaa-4ba6-aa56-955b43329a9e 0.02 false false near_mint en USD
284 Bakersbane Duo BLB Bloomburrow 163 normal common 1 96035 5309354f-1ff4-4fa9-9141-01ea2f7588ab 0.1 false false near_mint en USD
285 Shore Up BLB Bloomburrow 69 normal common 1 96277 4dc3b49e-3674-494c-bdea-4374cefd10f4 0.08 false false near_mint en USD
286 Emberheart Challenger BLB Bloomburrow 133 normal rare 1 95888 0035082e-bb86-4f95-be48-ffc87fe5286d 4.13 false false near_mint en USD
287 Gev, Scaled Scorch BLB Bloomburrow 214 normal rare 1 96001 131ea976-289e-4f32-896d-27bbfd423ba9 0.37 false false near_mint en USD
288 Starfall Invocation BLB Bloomburrow 34 normal rare 1 95904 2aea38e6-ec58-4091-b27c-2761bdd12b13 0.88 false false near_mint en USD
289 Tidecaller Mentor BLB Bloomburrow 236 normal uncommon 1 95859 fa10ffac-7cc2-41ef-b8a0-9431923c0542 0.04 false false near_mint en USD
290 Jackdaw Savior BLB Bloomburrow 18 normal rare 1 96000 121af600-6143-450a-9f87-12ce4833f1ec 0.27 false false near_mint en USD
291 Helga, Skittish Seer BLB Bloomburrow 217 normal mythic 1 95914 40339715-22d0-4f99-822b-a00d9824f27a 2.0 false false near_mint en USD
292 Long River Lurker BLB Bloomburrow 57 normal uncommon 1 95941 7c267719-cd03-4003-b281-e732d5e42a1e 0.1 false false near_mint en USD
293 Thornvault Forager BLB Bloomburrow 197 normal rare 1 95807 8c2d6b02-a453-40f9-992a-5c5542987cfb 0.65 false false near_mint en USD
294 Eddymurk Crab BLB Bloomburrow 48 normal uncommon 1 96132 e6d45abe-4962-47d9-a54e-7e623ea8647c 0.18 false false near_mint en USD
295 Moonstone Harbinger BLB Bloomburrow 101 normal uncommon 1 95922 59e4aa8d-1d06-48db-b205-aa2f1392bbcb 0.03 false false near_mint en USD
296 Brazen Collector BLB Bloomburrow 128 normal uncommon 1 95873 78b55a58-c669-4dc6-aa63-5d9dff52e613 0.09 false false near_mint en USD
297 Brightblade Stoat BLB Bloomburrow 4 normal uncommon 1 95882 df7fea2e-7414-4bc8-adb0-9342e174c009 0.07 false false near_mint en USD
298 Warren Warleader BLB Bloomburrow 38 normal mythic 1 95849 eb5237a0-5ac3-4ded-9f92-5f782a7bbbd7 3.14 false false near_mint en USD
299 Kitnap BLB Bloomburrow 53 normal rare 1 95739 085be5d1-fd85-46d1-ad39-a8aa75a06a96 0.14 false false near_mint en USD
300 Fountainport BLB Bloomburrow 253 normal rare 1 96052 658cfcb7-81b7-48c6-9dd2-1663d06108cf 5.77 false false near_mint en USD
301 Whiskervale Forerunner BLB Bloomburrow 40 normal rare 1 95927 60a78d59-af31-4af9-95aa-2573fe553925 0.17 false false near_mint en USD
302 Dreamdew Entrancer BLB Bloomburrow 211 normal rare 1 95755 26bd6b0d-8606-4a37-8be3-a852f1a8e99c 0.28 false false near_mint en USD
303 Playful Shove BLB Bloomburrow 145 normal uncommon 1 95993 07956edf-34c1-4218-9784-ddbca13e380c 0.1 false false near_mint en USD
304 Feed the Cycle BLB Bloomburrow 94 normal uncommon 1 96067 7e017ff8-2936-4a1b-bece-00004cfbad06 0.12 false false near_mint en USD
305 Hoarder's Overflow BLB Bloomburrow 141 normal uncommon 1 96112 c2ed5079-07b4-4575-a2c8-5f0cbff888c3 0.04 false false near_mint en USD
306 Sunspine Lynx BLB Bloomburrow 155 normal rare 1 95875 8995ceaf-b7e0-423c-8f3e-25212d522502 1.8 false false near_mint en USD
307 Stormcatch Mentor BLB Bloomburrow 234 normal uncommon 1 95813 99754055-6d67-4fde-aff3-41f6af6ea764 0.21 false false near_mint en USD
308 For the Common Good BLB Bloomburrow 172 normal rare 1 95912 3ec72a27-b622-47d7-bdf3-970ccaef0d2a 0.87 false false near_mint en USD
309 Dawn's Truce BLB Bloomburrow 295 normal rare 1 95893 0cce7aec-f9b0-461b-8245-5286b741409d 8.43 false false near_mint en USD
310 Clement, the Worrywort BLB Bloomburrow 329 normal rare 1 95835 d1a68d51-cd4e-4ee3-abc7-01435085aa26 0.55 false false near_mint en USD
311 Tender Wildguide BLB Bloomburrow 325 normal rare 1 95760 2dc164c8-62ca-4d59-ae1c-ef273fde9d10 0.63 false false near_mint en USD
312 Valley Questcaller BLB Bloomburrow 299 normal rare 1 95839 d9f25130-678d-4338-8eb4-b20d2da5bc74 1.0 false false near_mint en USD
313 Heirloom Epic BLB Bloomburrow 246 normal uncommon 1 96061 7839ce48-0175-494a-ab89-9bdfb7a50cb1 0.06 false false near_mint en USD
314 Shrike Force BLB Bloomburrow 31 normal uncommon 1 95763 306fec2c-d8b7-4f4b-8f58-10e3b9f3158f 0.14 false false near_mint en USD
315 Into the Flood Maw BLB Bloomburrow 52 normal uncommon 1 95919 50b9575a-53d9-4df7-b86c-cda021107d3f 1.48 false false near_mint en USD
316 Salvation Swan BLB Bloomburrow 28 normal rare 1 95635 b2656160-d319-4530-a6e5-c418596c3f12 0.27 false false near_mint en USD
317 Hired Claw BLB Bloomburrow 140 normal rare 1 95897 1ae41080-0d67-4719-adb2-49bf2a268b6c 2.43 false false near_mint en USD
318 Starseer Mentor BLB Bloomburrow 233 normal uncommon 1 95791 6b2f6dc5-9fe8-49c1-b24c-1d99ce1da619 0.05 false false near_mint en USD
319 Mistbreath Elder BLB Bloomburrow 184 normal rare 1 95975 e5246540-5a84-41d8-9e30-8e7a6c0e84e1 0.37 false false near_mint en USD
320 Hivespine Wolverine BLB Bloomburrow 177 normal uncommon 1 95943 821970a3-a291-4fe9-bb13-dfc54f9c3caf 0.06 false false near_mint en USD
321 Patchwork Banner BLB Bloomburrow 247 normal uncommon 1 96097 a8a982c8-bc08-44ba-b3ed-9e4b124615d6 4.68 false false near_mint en USD
322 Beza, the Bounding Spring BLB Bloomburrow 2 normal mythic 1 95862 fc310a26-b6a0-4e42-98ab-bdfd7b06cb63 9.56 false false near_mint en USD
323 Essence Channeler BLB Bloomburrow 12 normal rare 1 96042 5aaf7e4c-4d5d-4acc-a834-e6c4a7629408 1.27 false false near_mint en USD
324 Valley Questcaller BLB Bloomburrow 36 normal rare 1 95826 ba629ca8-a368-4282-8a61-9bf6a5c217f0 1.12 false false near_mint en USD
325 Conduct Electricity BLB Bloomburrow 130 normal common 1 95906 2f373dd6-2412-453c-85ba-10230dfe473a 0.02 false false near_mint en USD
326 Glidedive Duo BLB Bloomburrow 96 normal common 1 96026 4831e7ae-54e3-4bd9-b5af-52dc29f81715 0.02 false false near_mint en USD
327 Mind Spiral BLB Bloomburrow 59 normal common 1 96068 7e24fe6a-607b-49b8-9fca-cecb1e40de7f 0.01 false false near_mint en USD
328 Starforged Sword BLB Bloomburrow 249 normal uncommon 1 96110 c23d8e96-b972-4c6c-b0c4-b6627621f048 0.03 false false near_mint en USD
329 Vinereap Mentor BLB Bloomburrow 238 normal uncommon 1 95902 29b615ba-45c4-42a1-8525-1535f0b55300 0.16 false false near_mint en USD
330 Mindwhisker BLB Bloomburrow 60 normal uncommon 1 96099 aaa10f34-5bfd-4d87-8f07-58de3b0f5663 0.08 false false near_mint en USD
331 Persistent Marshstalker BLB Bloomburrow 104 normal uncommon 1 95947 8b900c71-713b-4b7e-b4be-ad9f4aa0c139 0.13 false false near_mint en USD
332 Portent of Calamity BLB Bloomburrow 66 normal rare 1 96073 8599e2dd-9164-4da3-814f-adccef3b9497 0.14 false false near_mint en USD
333 Fabled Passage BLB Bloomburrow 252 normal rare 1 96075 8809830f-d8e1-4603-9652-0ad8b00234e9 5.13 false false near_mint en USD
334 Stormsplitter BLB Bloomburrow 154 normal mythic 1 96040 56f214d3-6b93-40db-a693-55e491c8a283 3.12 false false near_mint en USD
335 Stargaze BLB Bloomburrow 114 normal uncommon 1 95939 777fc599-8de7-44d2-8fdd-9bddf5948a0c 0.14 false false near_mint en USD
336 Coruscation Mage BLB Bloomburrow 131 normal uncommon 1 95972 dc2c1de0-6233-469a-be72-a050b97d2c8f 0.32 false false near_mint en USD
337 Dour Port-Mage BLB Bloomburrow 47 normal rare 1 96049 6402133e-eed1-4a46-9667-8b7a310362c1 2.17 false false near_mint en USD
338 Muerra, Trash Tactician BLB Bloomburrow 227 normal rare 1 95821 b40e4658-fd68-46d0-9a89-25570a023d19 0.31 false false near_mint en USD
339 Stormchaser's Talent BLB Bloomburrow 75 normal rare 1 96092 a36e682d-b43d-4e08-bf5b-70d7e924dbe5 13.62 false false near_mint en USD
340 Sinister Monolith BLB Bloomburrow 113 normal uncommon 1 96012 2a15e06c-2608-4e7a-a16c-d35417669d86 0.08 false false near_mint en USD
341 Pawpatch Formation BLB Bloomburrow 186 normal uncommon 1 95963 b82c20ad-0f69-4822-ae76-770832cccdf7 1.83 false false near_mint en USD
342 Plumecreed Mentor BLB Bloomburrow 228 normal uncommon 1 95819 b1aa988f-547e-449a-9f1a-296c01d68d96 0.03 false false near_mint en USD
343 Baylen, the Haymaker BLB Bloomburrow 205 normal rare 1 95889 00e93be2-e06b-4774-8ba5-ccf82a6da1d8 1.04 false false near_mint en USD
344 Long River's Pull BLB Bloomburrow 58 normal uncommon 1 95900 1c81d0fa-81a1-4f9b-a5fd-5a648fd01dea 0.23 false false near_mint en USD
345 Bonecache Overseer BLB Bloomburrow 85 normal uncommon 1 95944 82defb87-237f-4b77-9673-5bf00607148f 0.08 false false near_mint en USD
346 Three Tree Scribe BLB Bloomburrow 199 normal uncommon 1 95977 ea2ca1b3-4c1a-4be5-b321-f57db5ff0528 0.15 false false near_mint en USD
347 Cruelclaw's Heist BLB Bloomburrow 88 normal rare 1 96121 cab4539a-0157-4cbe-b50f-6e2575df74e9 0.48 false false near_mint en USD
348 Manifold Mouse BLB Bloomburrow 143 normal rare 1 95881 db3832b5-e83f-4569-bd49-fb7b86fa2d47 3.37 false false near_mint en USD
349 Iridescent Vinelasher BLB Bloomburrow 99 normal rare 1 95877 b2bc854c-4e72-48e0-a098-e3451d6e511d 1.11 false false near_mint en USD
350 Daggerfang Duo BLB Bloomburrow 89 normal common 1 96468 cea2bb34-e328-44fb-918a-72208c9457e4 0.03 false false near_mint en USD
351 Stickytongue Sentinel BLB Bloomburrow 193 normal common 1 96105 b5fa9651-b217-4f93-9c46-9bdb11feedcb 0.03 false false near_mint en USD
352 Brave-Kin Duo BLB Bloomburrow 3 normal common 1 95824 b8dd4693-424d-4d6e-86cf-24401a23d6b1 0.03 false false near_mint en USD
353 Driftgloom Coyote BLB Bloomburrow 11 normal uncommon 1 95969 d7ab2de3-3aea-461a-a74f-fb742cf8a198 0.03 false false near_mint en USD
354 Rockface Village BLB Bloomburrow 259 normal uncommon 1 95629 62799d24-39a6-4e66-8ac3-7cafa99e6e6d 0.48 false false near_mint en USD
355 Flamecache Gecko BLB Bloomburrow 135 normal uncommon 1 96142 fb8e7c97-8393-41b8-bb0b-3983dcc5e7f4 0.08 false false near_mint en USD
356 Innkeeper's Talent BLB Bloomburrow 180 normal rare 1 95954 941b0afc-0e8f-45f2-ae7f-07595e164611 19.36 false false near_mint en USD
357 Repel Calamity BLB Bloomburrow 27 foil uncommon 1 95834 d068192a-6270-4981-819d-4945fa4a2b83 0.08 false false near_mint en USD
358 Galewind Moose BLB Bloomburrow 173 foil uncommon 1 95871 58706bd8-558a-43b9-9f1e-c1ff0044203b 0.14 false false near_mint en USD
359 Brave-Kin Duo BLB Bloomburrow 3 foil common 1 95824 b8dd4693-424d-4d6e-86cf-24401a23d6b1 0.06 false false near_mint en USD
360 Agate Assault BLB Bloomburrow 122 foil common 1 96066 7dd9946b-515e-4e0d-9da2-711e126e9fa6 0.03 false false near_mint en USD
361 Flamecache Gecko BLB Bloomburrow 135 foil uncommon 1 96142 fb8e7c97-8393-41b8-bb0b-3983dcc5e7f4 0.12 false false near_mint en USD
362 Rabid Gnaw BLB Bloomburrow 147 foil uncommon 1 96014 2f815bae-820a-49f6-8eed-46f658e7b6ff 0.1 false false near_mint en USD
363 Pond Prophet BLB Bloomburrow 229 foil common 1 95861 fb959e74-61ea-453d-bb9f-ad0183c0e1b1 0.16 false false near_mint en USD
364 Star Charter BLB Bloomburrow 33 foil uncommon 1 95894 0e209237-00f7-4bf0-8287-ccde02ce8e8d 0.12 false false near_mint en USD
365 Kindlespark Duo BLB Bloomburrow 142 foil common 1 96096 a839fba3-1b66-4dd1-bf43-9b015b44fc81 0.07 false false near_mint en USD
366 Crumb and Get It BLB Bloomburrow 8 foil common 1 96259 3c7b3b25-d4b3-4451-9f5c-6eb369541175 0.04 false false near_mint en USD
367 Peerless Recycling BLB Bloomburrow 188 foil uncommon 1 95925 5f72466c-505b-4371-9366-0fde525a37e6 0.23 false false near_mint en USD
368 Nocturnal Hunger BLB Bloomburrow 102 foil common 1 96060 742c0409-9abd-4559-b52e-932cc90c531a 0.02 false false near_mint en USD
369 Seedpod Squire BLB Bloomburrow 232 foil common 1 95852 f3684577-51ce-490e-9b59-b19c733be466 0.03 false false near_mint en USD
370 Nettle Guard BLB Bloomburrow 23 foil common 1 95949 8c9c3cc3-2aa2-453e-a17c-2baeeaabe0a9 0.05 false false near_mint en USD
371 Sazacap's Brew BLB Bloomburrow 151 foil common 1 96330 6d963080-b3ec-467d-82f7-39db6ecd6bbc 0.05 false false near_mint en USD
372 Waterspout Warden BLB Bloomburrow 80 foil common 1 95909 35898b39-98e2-405b-8f18-0e054bd2c29e 0.04 false false near_mint en USD
373 Mindwhisker BLB Bloomburrow 60 foil uncommon 1 96099 aaa10f34-5bfd-4d87-8f07-58de3b0f5663 0.12 false false near_mint en USD
374 Splash Portal BLB Bloomburrow 74 foil uncommon 1 95958 adbaa356-28ba-487f-930a-a957d9960ab0 0.28 false false near_mint en USD
375 Festival of Embers BLB Bloomburrow 134 foil rare 1 96023 4433ee12-2013-4fdc-979f-ae065f63a527 0.2 false false near_mint en USD
376 Brightblade Stoat BLB Bloomburrow 4 foil uncommon 1 95882 df7fea2e-7414-4bc8-adb0-9342e174c009 0.11 false false near_mint en USD
377 Mind Spiral BLB Bloomburrow 59 foil common 1 96068 7e24fe6a-607b-49b8-9fca-cecb1e40de7f 0.04 false false near_mint en USD
378 Rust-Shield Rampager BLB Bloomburrow 190 foil common 1 96117 c96b01f5-83de-4237-a68d-f946c53e31a6 0.04 false false near_mint en USD
379 Barkform Harvester BLB Bloomburrow 243 foil common 1 95984 f77049a6-0f22-415b-bc89-20bcb32accf6 0.11 false false near_mint en USD
380 Wax-Wane Witness BLB Bloomburrow 39 foil common 1 95971 d90ea719-5320-46c6-a347-161853a14776 0.05 false false near_mint en USD
381 Warren Elder BLB Bloomburrow 37 foil common 1 96030 4bf20069-5a20-4f95-976b-6af2b69f3ad0 0.04 false false near_mint en USD
382 Stickytongue Sentinel BLB Bloomburrow 193 foil common 1 96105 b5fa9651-b217-4f93-9c46-9bdb11feedcb 0.05 false false near_mint en USD
383 Vren, the Relentless BLB Bloomburrow 239 foil rare 1 95930 6506277d-f031-4db5-9d16-bf2389094785 0.71 false false near_mint en USD
384 Three Tree Scribe BLB Bloomburrow 199 foil uncommon 1 95977 ea2ca1b3-4c1a-4be5-b321-f57db5ff0528 0.2 false false near_mint en USD
385 Glidedive Duo BLB Bloomburrow 96 foil common 1 96026 4831e7ae-54e3-4bd9-b5af-52dc29f81715 0.03 false false near_mint en USD
386 Bushy Bodyguard BLB Bloomburrow 166 foil uncommon 1 95997 0de60cf7-fa82-4b6f-9f88-6590fba5c863 0.12 false false near_mint en USD
387 Conduct Electricity BLB Bloomburrow 130 foil common 1 95906 2f373dd6-2412-453c-85ba-10230dfe473a 0.03 false false near_mint en USD
388 Daggerfang Duo BLB Bloomburrow 89 foil common 1 96468 cea2bb34-e328-44fb-918a-72208c9457e4 0.07 false false near_mint en USD
389 Shore Up BLB Bloomburrow 69 foil common 1 96277 4dc3b49e-3674-494c-bdea-4374cefd10f4 0.13 false false near_mint en USD
390 Hidden Grotto BLB Bloomburrow 254 foil common 1 95918 4ba8f2e7-8357-4862-97dc-1942d066023a 0.17 false false near_mint en USD
391 Cindering Cutthroat BLB Bloomburrow 208 foil common 1 95820 b2ea10dd-21ea-4622-be27-79d03a802b85 0.01 false false near_mint en USD
392 Glarb, Calamity's Augur BLB Bloomburrow 215 foil mythic 1 95864 ffc70b2d-5a3a-49ea-97db-175a62248302 4.3 false false near_mint en USD
393 Kindlespark Duo BLB Bloomburrow 142 normal common 5 96096 a839fba3-1b66-4dd1-bf43-9b015b44fc81 0.04 false false near_mint en USD
394 Finch Formation BLB Bloomburrow 50 normal common 2 95899 1c671eab-d1ef-4d79-94eb-8b85f0d18699 0.02 false false near_mint en USD
395 Builder's Talent BLB Bloomburrow 5 normal uncommon 2 96002 15fa581a-724e-4196-a9a3-ff84c54bdb7d 0.08 false false near_mint en USD
396 Might of the Meek BLB Bloomburrow 144 normal common 9 95627 509bf254-8a2b-4dfa-9ae5-386321b35e8b 0.09 false false near_mint en USD
397 Nightwhorl Hermit BLB Bloomburrow 62 normal common 3 95994 0928e04f-2568-41e8-b603-7a25cf5f94d0 0.02 false false near_mint en USD
398 Fell BLB Bloomburrow 95 normal uncommon 2 95830 c96ac326-de44-470b-a592-a4c2a052c091 0.3 false false near_mint en USD
399 Sunshower Druid BLB Bloomburrow 195 normal common 6 95630 7740abc5-54e1-478d-966e-0fa64e727995 0.04 false false near_mint en USD
400 Wandertale Mentor BLB Bloomburrow 240 normal uncommon 2 95808 8c399a55-d02e-41ed-b827-8784b738c118 0.09 false false near_mint en USD
401 Thought-Stalker Warlock BLB Bloomburrow 118 normal uncommon 2 96018 42e80284-d489-493b-ae92-95b742d07cb3 0.12 false false near_mint en USD
402 Splash Portal BLB Bloomburrow 74 normal uncommon 2 95958 adbaa356-28ba-487f-930a-a957d9960ab0 0.23 false false near_mint en USD
403 Alania's Pathmaker BLB Bloomburrow 123 normal common 7 96123 d3871fe6-e26e-4ab4-bd81-7e3c7b8135c1 0.02 false false near_mint en USD
404 Head of the Homestead BLB Bloomburrow 216 normal common 3 95762 2fc20157-edd3-484d-8864-925c071c0551 0.04 false false near_mint en USD
405 Hidden Grotto BLB Bloomburrow 254 normal common 4 95918 4ba8f2e7-8357-4862-97dc-1942d066023a 0.08 false false near_mint en USD
406 Star Charter BLB Bloomburrow 33 normal uncommon 3 95894 0e209237-00f7-4bf0-8287-ccde02ce8e8d 0.04 false false near_mint en USD
407 War Squeak BLB Bloomburrow 160 normal common 4 95999 105964a7-88b7-4340-aa66-e908189a3638 0.02 false false near_mint en USD
408 Bellowing Crier BLB Bloomburrow 42 normal common 2 96119 ca2215dd-6300-49cf-b9b2-3a840b786c31 0.04 false false near_mint en USD
409 Cindering Cutthroat BLB Bloomburrow 208 normal common 4 95820 b2ea10dd-21ea-4622-be27-79d03a802b85 0.02 false false near_mint en USD
410 Intrepid Rabbit BLB Bloomburrow 17 normal common 7 96276 4d70b99d-c8bf-4a56-8957-cf587fe60b81 0.03 false false near_mint en USD
411 Carrot Cake BLB Bloomburrow 7 normal common 3 95636 eb03bb4f-8b4b-417e-bfc6-294cd2186b2e 0.06 false false near_mint en USD
412 Thought Shucker BLB Bloomburrow 77 normal common 7 95916 44b0d83b-cc41-4f82-892c-ef6d3293228a 0.02 false false near_mint en USD
413 Seasoned Warrenguard BLB Bloomburrow 30 normal uncommon 2 96081 90873995-876f-4e89-8bc7-41a74f4d931f 0.09 false false near_mint en USD
414 Junkblade Bruiser BLB Bloomburrow 220 normal common 3 95810 918fd89b-5ab7-4ae2-920c-faca5e9da7b9 0.04 false false near_mint en USD
415 Cache Grab BLB Bloomburrow 167 normal common 2 95842 dfd977dc-a7c3-4d0a-aca7-b25bd154e963 0.08 false false near_mint en USD
416 Lilypad Village BLB Bloomburrow 255 normal uncommon 2 95631 7e95a7cc-ed77-4ca4-80db-61c0fc68bf50 0.14 false false near_mint en USD
417 Agate-Blade Assassin BLB Bloomburrow 82 normal common 5 96017 39ebb84a-1c52-4b07-9bd0-b360523b3a5b 0.03 false false near_mint en USD
418 Repel Calamity BLB Bloomburrow 27 normal uncommon 2 95834 d068192a-6270-4981-819d-4945fa4a2b83 0.07 false false near_mint en USD
419 Hazel's Nocturne BLB Bloomburrow 97 normal uncommon 2 96009 239363df-4de8-4b64-80fc-a1f4b5c36027 0.07 false false near_mint en USD
420 Treeguard Duo BLB Bloomburrow 200 normal common 4 96077 89c8456e-c971-42b7-abf3-ff5ae1320abe 0.01 false false near_mint en USD
421 Calamitous Tide BLB Bloomburrow 43 normal uncommon 2 96003 178bc8b2-ffa0-4549-aead-aacb3db3cf19 0.03 false false near_mint en USD
422 Splash Lasher BLB Bloomburrow 73 normal uncommon 2 95910 362ee125-35a0-46cd-a201-e6797d12d33a 0.04 false false near_mint en USD
423 Blooming Blast BLB Bloomburrow 126 normal uncommon 2 95996 0cd92a83-cec3-4085-a929-3f204e3e0140 0.06 false false near_mint en USD
424 Sugar Coat BLB Bloomburrow 76 normal uncommon 2 95887 fcacbe71-efb0-49e1-b2d0-3ee65ec6cf8b 0.05 false false near_mint en USD
425 Dazzling Denial BLB Bloomburrow 45 normal common 6 96369 8739f1ac-2e57-4b52-a7ff-cc8df5936aad 0.04 false false near_mint en USD
426 Nettle Guard BLB Bloomburrow 23 normal common 4 95949 8c9c3cc3-2aa2-453e-a17c-2baeeaabe0a9 0.03 false false near_mint en USD
427 Raccoon Rallier BLB Bloomburrow 148 normal common 5 96104 b5b5180f-5a1c-4df8-9019-195e65a50ce3 0.04 false false near_mint en USD
428 High Stride BLB Bloomburrow 176 normal common 8 96153 09c8cf4b-8e65-4a1c-b458-28b5ab56b390 0.04 false false near_mint en USD
429 Otterball Antics BLB Bloomburrow 63 normal uncommon 2 95913 3ff83ff7-e428-4ccc-8341-f223dab76bd1 0.1 false false near_mint en USD
430 Frilled Sparkshooter BLB Bloomburrow 136 normal common 7 95934 674bbd6d-e329-42cf-963d-88d1ce8fe51e 0.02 false false near_mint en USD
431 Moonrise Cleric BLB Bloomburrow 226 normal common 3 95767 35f2a71f-31e8-4b51-9dd4-51a5336b3b86 0.04 false false near_mint en USD
432 Wax-Wane Witness BLB Bloomburrow 39 normal common 3 95971 d90ea719-5320-46c6-a347-161853a14776 0.02 false false near_mint en USD
433 Pearl of Wisdom BLB Bloomburrow 64 normal common 7 95625 13cb9575-1138-4f99-8e90-0eaf00bdf4a1 0.01 false false near_mint en USD
434 Run Away Together BLB Bloomburrow 67 normal common 3 95799 7cb7ec70-a5a4-4188-ba1a-e88b81bdbad0 0.04 false false near_mint en USD
435 Early Winter BLB Bloomburrow 93 normal common 2 95626 5030e6ac-211d-4145-8c87-998a8351a467 0.05 false false near_mint en USD
436 Three Tree Rootweaver BLB Bloomburrow 198 normal common 2 96469 d1ab6e14-26e0-4174-b5c6-bc0f5c26b177 0.04 false false near_mint en USD
437 Mudflat Village BLB Bloomburrow 257 normal uncommon 2 95628 53ec4ad3-9cf0-4f1b-a9db-d63feee594ab 0.24 false false near_mint en USD
438 Starlit Soothsayer BLB Bloomburrow 115 normal common 6 95895 184c1eca-2991-438f-b5d2-cd2529b9c9b4 0.03 false false near_mint en USD
439 Hop to It BLB Bloomburrow 16 normal uncommon 2 95851 ee7207f8-5daa-42af-aeea-7a489047110b 0.07 false false near_mint en USD
440 Psychic Whorl BLB Bloomburrow 105 normal common 5 96127 df900308-8432-4a0a-be21-17482026012b 0.04 false false near_mint en USD
441 Barkform Harvester BLB Bloomburrow 243 normal common 4 95984 f77049a6-0f22-415b-bc89-20bcb32accf6 0.06 false false near_mint en USD
442 Daring Waverider BLB Bloomburrow 44 normal uncommon 2 95896 19422406-0c1a-497e-bed1-708bc556491a 0.06 false false near_mint en USD
443 Plumecreed Escort BLB Bloomburrow 65 normal uncommon 2 95983 f71320ed-2f30-49ce-bcb0-19aebba3f0e8 0.05 false false near_mint en USD
444 Parting Gust BLB Bloomburrow 24 normal uncommon 2 95744 1086e826-94b8-4398-8a38-d8eacca56a43 0.38 false false near_mint en USD
445 Veteran Guardmouse BLB Bloomburrow 237 normal common 3 95771 3db43c46-b616-4ef8-80ed-0fab345ab3d0 0.01 false false near_mint en USD
446 Dire Downdraft BLB Bloomburrow 46 normal common 6 96526 f1931f22-974c-43ad-911e-684bf3f9995d 0.02 false false near_mint en USD
447 Waterspout Warden BLB Bloomburrow 80 normal common 4 95909 35898b39-98e2-405b-8f18-0e054bd2c29e 0.01 false false near_mint en USD
448 Lupinflower Village BLB Bloomburrow 256 normal uncommon 2 95634 8ab9d56f-9178-4ec9-a5f6-b934f50d8d9d 0.1 false false near_mint en USD
449 Heartfire Hero BLB Bloomburrow 138 normal uncommon 2 95870 48ace959-66b2-40c8-9bff-fd7ed9c99a82 2.1 false false near_mint en USD
450 Peerless Recycling BLB Bloomburrow 188 normal uncommon 2 95925 5f72466c-505b-4371-9366-0fde525a37e6 0.1 false false near_mint en USD
451 Pond Prophet BLB Bloomburrow 229 normal common 4 95861 fb959e74-61ea-453d-bb9f-ad0183c0e1b1 0.09 false false near_mint en USD
452 Crumb and Get It BLB Bloomburrow 8 normal common 2 96259 3c7b3b25-d4b3-4451-9f5c-6eb369541175 0.03 false false near_mint en USD
453 Wildfire Howl BLB Bloomburrow 162 normal uncommon 2 96059 7392d397-9836-4df2-944d-c930c9566811 0.05 false false near_mint en USD
454 Bark-Knuckle Boxer BLB Bloomburrow 164 normal uncommon 2 95921 582637a9-6aa0-4824-bed7-d5fc91bda35e 0.03 false false near_mint en USD
455 Ruthless Negotiation BLB Bloomburrow 108 normal uncommon 2 95828 c7f4360c-8d68-4058-b9ec-da9948cb060d 0.1 false false near_mint en USD
456 Three Tree Mascot FDN Foundations 682 normal common 3 100412 40b8bf3a-1cb5-4ce2-ac25-9410f17130de 0.11 false false near_mint en USD
457 Tempest Angler BLB Bloomburrow 235 normal common 2 95803 850daae4-f0b7-4604-95e7-ad044ec165c3 0.04 false false near_mint en USD
458 Starscape Cleric BLB Bloomburrow 116 normal uncommon 2 96037 53a938a7-0154-4350-87cb-00da24ec3824 0.62 false false near_mint en USD
459 Wick's Patrol BLB Bloomburrow 121 normal uncommon 3 95926 5fa0c53d-fe7b-4b8b-ad81-7967ca318ff7 0.07 false false near_mint en USD
460 Fireglass Mentor BLB Bloomburrow 213 normal uncommon 2 95823 b78fbaa3-c580-4290-9c28-b74169aab2fc 0.08 false false near_mint en USD
461 Steampath Charger BLB Bloomburrow 153 normal common 2 95890 03bf1296-e347-4070-8c6f-5c362c2f9364 0.03 false false near_mint en USD
462 Whiskerquill Scribe BLB Bloomburrow 161 normal common 2 96124 da653996-9bd4-40bd-afb4-48c7e070a269 0.01 false false near_mint en USD
463 Lilysplash Mentor BLB Bloomburrow 222 normal uncommon 3 95789 64de7b1f-a03e-4407-91f1-e108a2f26735 0.12 false false near_mint en USD
464 Roughshod Duo BLB Bloomburrow 150 normal common 3 96343 78cdcfb9-a247-4c2d-a098-5b57570f8cd5 0.03 false false near_mint en USD
465 Bonebind Orator BLB Bloomburrow 84 normal common 3 96535 faf226fa-ca09-4468-8804-87b2a7de2c66 0.02 false false near_mint en USD
466 Agate Assault BLB Bloomburrow 122 normal common 2 96066 7dd9946b-515e-4e0d-9da2-711e126e9fa6 0.02 false false near_mint en USD
467 Nocturnal Hunger BLB Bloomburrow 102 normal common 3 96060 742c0409-9abd-4559-b52e-932cc90c531a 0.02 false false near_mint en USD
468 Jolly Gerbils BLB Bloomburrow 19 normal uncommon 2 96167 0eab51d6-ba17-4a8c-8834-25db363f2b6b 0.04 false false near_mint en USD
469 Downwind Ambusher BLB Bloomburrow 92 normal uncommon 2 95920 55cfd628-933a-4d3d-b2e5-70bc86960d1c 0.02 false false near_mint en USD
470 Scales of Shale BLB Bloomburrow 110 normal common 2 95955 9ae14276-dbbd-4257-80e9-accd6c19f5b2 0.02 false false near_mint en USD
471 Treetop Sentries BLB Bloomburrow 201 normal common 4 95974 e16d4d6e-1fe5-4ff6-9877-8c849a24f5e0 0.03 false false near_mint en USD
472 Seedpod Squire BLB Bloomburrow 232 normal common 4 95852 f3684577-51ce-490e-9b59-b19c733be466 0.01 false false near_mint en USD
473 Savor BLB Bloomburrow 109 normal common 4 96178 1397f689-dca1-4d35-864b-92c5606afb9a 0.04 false false near_mint en USD
474 Polliwallop BLB Bloomburrow 189 normal common 2 95935 6bc4963c-d90b-4588-bdb7-85956e42a623 0.03 false false near_mint en USD
475 Sonar Strike BLB Bloomburrow 32 normal common 2 96093 a50da179-751f-47a8-a547-8c4a291ed381 0.02 false false near_mint en USD
476 Uncharted Haven FDN Foundations 564 normal common 3 97170 172cd5b7-98fc-4add-b858-a0b3dfb75c19 0.14 false false near_mint en USD
477 Teapot Slinger BLB Bloomburrow 157 normal uncommon 2 96015 30506844-349f-4b68-8cc1-d028c1611cc7 0.06 false false near_mint en USD
478 Harvestrite Host BLB Bloomburrow 15 normal uncommon 2 95915 41762689-0c13-4d45-9d81-ba2afad980f8 0.07 false false near_mint en USD
479 Spellgyre BLB Bloomburrow 72 normal uncommon 2 96139 f6f6620a-1d40-429d-9a0c-aaeb62adaa71 0.08 false false near_mint en USD
480 Oakhollow Village BLB Bloomburrow 258 normal uncommon 2 95624 0d49b016-b02b-459f-85e9-c04f6bdcb94e 0.35 false false near_mint en USD
481 Bumbleflower's Sharepot BLB Bloomburrow 244 normal common 2 95924 5f0affd5-5dcd-4dd1-a694-37a9aedf4084 0.02 false false near_mint en USD
482 Overprotect BLB Bloomburrow 185 normal uncommon 2 95891 079e979f-b618-4625-989c-e0ea5b61ed8a 0.55 false false near_mint en USD
483 Heaped Harvest BLB Bloomburrow 175 normal common 3 96255 3b5349db-0e0a-4b15-886e-0db403ef49cb 0.1 false false near_mint en USD
484 Flowerfoot Swordmaster BLB Bloomburrow 14 normal uncommon 2 95812 97ff118f-9c3c-43a2-8085-980c7fe7d227 0.15 false false near_mint en USD
485 Banishing Light BLB Bloomburrow 1 normal common 6 96011 25a06f82-ebdb-4dd6-bfe8-958018ce557c 0.04 false false near_mint en USD
486 Sazacap's Brew BLB Bloomburrow 151 normal common 3 96330 6d963080-b3ec-467d-82f7-39db6ecd6bbc 0.05 false false near_mint en USD
487 Diresight BLB Bloomburrow 91 normal common 3 95985 fada29c0-5293-40a4-b36d-d073ee99e650 0.1 false false near_mint en USD
488 Gossip's Talent BLB Bloomburrow 51 normal uncommon 2 95961 b299889a-03d6-4659-b0e1-f0830842e40f 0.18 false false near_mint en USD
489 Fountainport Bell BLB Bloomburrow 245 normal common 3 96094 a5c94bc0-a49d-451b-8e8d-64d46b8b8603 0.04 false false near_mint en USD
490 Reptilian Recruiter BLB Bloomburrow 149 normal uncommon 2 96072 81dec453-c9d7-42cb-980a-c82f82bede76 0.02 false false near_mint en USD
491 Thistledown Players BLB Bloomburrow 35 normal common 2 95960 afa8d83f-8586-4127-8b55-9715e9547488 0.01 false false near_mint en USD
492 Clifftop Lookout BLB Bloomburrow 168 normal uncommon 2 95931 662d3bcc-65f3-4c69-8ea1-446870a1193d 0.16 false false near_mint en USD
493 Rust-Shield Rampager BLB Bloomburrow 190 normal common 2 96117 c96b01f5-83de-4237-a68d-f946c53e31a6 0.02 false false near_mint en USD
494 Consumed by Greed BLB Bloomburrow 87 normal uncommon 2 95884 e50acc41-3517-42db-b1d3-1bdfd7294d84 0.09 false false near_mint en USD
495 Rabbit Response BLB Bloomburrow 26 normal common 2 96114 c4ded450-346d-4917-917a-b62bc0267509 0.02 false false near_mint en USD
496 Corpseberry Cultivator BLB Bloomburrow 210 normal common 2 95829 c911a759-ed7b-452b-88a3-663478357610 0.02 false false near_mint en USD
497 Mind Drill Assailant BLB Bloomburrow 225 normal common 2 95783 507ba708-ca9b-453e-b4c2-23b6650eb5a8 0.05 false false near_mint en USD
498 Hazardroot Herbalist BLB Bloomburrow 174 normal uncommon 2 96130 e2882982-b3a3-4762-a550-6b82db1038e8 0.04 false false near_mint en USD
499 Dewdrop Cure BLB Bloomburrow 10 normal uncommon 2 95932 666aefc2-44e0-4c27-88d5-7906f245a71f 0.13 false false near_mint en USD
500 Valley Rally BLB Bloomburrow 159 normal uncommon 2 95878 b6178258-1ad6-4122-a56f-6eb7d0611e84 0.04 false false near_mint en USD
501 Blacksmith's Talent BLB Bloomburrow 125 normal uncommon 2 96029 4bb318fa-481d-40a7-978e-f01b49101ae0 0.17 false false near_mint en USD
502 Pileated Provisioner BLB Bloomburrow 25 normal common 2 96102 ae442cd6-c4df-4aad-9b1d-ccd936c5ec96 0.02 false false near_mint en USD
503 Short Bow BLB Bloomburrow 248 normal uncommon 2 96281 51d8b72b-fa8f-48d3-bddc-d3ce9b8ba2ea 0.15 false false near_mint en USD
504 Warren Elder BLB Bloomburrow 37 normal common 2 96030 4bf20069-5a20-4f95-976b-6af2b69f3ad0 0.03 false false near_mint en USD