diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..0ace1b6 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,43 @@ +# Contributing + +## We Develop with GitHub + +We use GitHub to host code, to track issues and feature requests, as well as accept pull requests. + +## Branch Flow + +We use the `main` branch as the development branch. All PRs should be made to the `main` branch from a feature branch. To create a pull request, you can use the following steps: + +1. Fork the repository and create a new branch from `main`. +2. Ensure that any text content matches the tone of the rest of the site and is clean +3. Follow the "Boy Scout Rule" with code - leave it better than you found it. New code should be well documented. +4. Test your changes! +5. Provide detail (the what and why) behind your changes and label your pull request with the appropriate labels - for example, a change affecting GitHub actions should have the `actions` label added. +6. Open your pull request, which will be reviewed. Work through any change requests by the maintainer. +7. If approved and merged, congratulations! + +Over time, code formatting and linting will be added to the project, and steps & tests will be added accordingly. Similarly, a Pull request template is on the roadmap. + +## How To Get Started + +### Prerequisites +If just contributing text, you may feel more comfortable editing in the GitHub web view. This is perfectly fine, but I strongly encourage learning and exploring something new with setting up the project on your device. + +- Install [Node.js 20+](https://nodejs.org/en/download/). +- Clone your fork to your device. +- Run `npm install` from the project root directory +- If you don't want to run the data generation scripts locally, skip this step. More notes will be added for this process in the future. + - To read the Google Sheet data locally, you'll need to setup a GCP project, enable the Google Sheets API, and generate a service account. + - Add the service account credential to your env file. + - The Google Sheet id environment variable can be populated by grabbing the portion of the Community Catalog URL after "/d/" and the next slash. + +### Data Setup (Optional) + +Currently, the database file and produced tile mdx files are saved to the repository to let you skip the steps of generating data, setting up a GCP project, etc. If you are doing data setup or code changes around this, you will want to follow the prereq step. Once setup, run `npm run gen:full` which will execute all three generate data scripts. In order, this will: +1. create a sqlite database in the `/src/data/` directory, with tables for the tiles and importing tiles. +2. fetch and parse the Community Catalog data into your database. +3. produce the `src/pages/tiles/` content for each tile. + +### General + +More to come in this section. For now, you should be goog to go - fire up the local server with `npm run dev` and have fun! diff --git a/package.json b/package.json index 19ce696..3476a5b 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "gen:mdx": "node ./src/data/generateMdxFiles.js", "gen:data": "node ./src/data/updateTiles.js", "gen:db": "node ./src/data/setupDb.js", - "build:full": "npm run gen:db && gen:data && run gen:mdx && next build", + "gen:full": "npm run gen:db && gen:data && run gen:mdx", + "build:full": "npm run gen:full && next build", "build": "next build", "dev": "next", "start": "next start" diff --git a/src/components/HorizontalGrid.js b/src/components/HorizontalGrid.js index 97cb47d..6b87e43 100644 --- a/src/components/HorizontalGrid.js +++ b/src/components/HorizontalGrid.js @@ -1,7 +1,6 @@ -// components/HorizontalGrid.js - import React from "react"; +// might trash this or hg2, todo land on one component const HorizontalGrid = ({ items }) => { return (
{ return (
{ - const handleBack = () => { - // This will navigate the user back to the previous page - console.log("history", window.history) - window.history.back(); - }; - - return ( - - ); -}; - -export default TakeMeBackButton; diff --git a/src/components/TileDetail.js b/src/components/TileDetail.js index 31c5d65..4b3729f 100644 --- a/src/components/TileDetail.js +++ b/src/components/TileDetail.js @@ -1,6 +1,6 @@ import React from "react"; -// This would typically come from an API or database +// had AI generate me random sample props for this const gameProperties = { mechanics: { generic: { name: "Generic", checked: true }, @@ -98,7 +98,7 @@ export default function TileDetail() { alignItems: 'center', justifyContent: 'center', color: 'white', - fontSize: '0.75rem', + fontSize: '0.75rem', fontWeight: 'bold', }}> {property.checked ? '✓' : ''} diff --git a/src/components/TileTable.js b/src/components/TileTable.js index 7e516c9..ecb8422 100644 --- a/src/components/TileTable.js +++ b/src/components/TileTable.js @@ -20,7 +20,9 @@ import { } from "@tanstack/react-table"; import { rankItem } from "@tanstack/match-sorter-utils"; -// Define a custom fuzzy filter function that will apply ranking info to rows (using match-sorter utils) +// todo: heavily clean up this component + +// define a custom fuzzy filter function that will apply ranking info to rows (using match-sorter utils) const fuzzyFilter = (row, columnId, value, addMeta) => { const itemRank = rankItem(row.getValue(columnId), value); addMeta({ itemRank }); diff --git a/src/data/data.db b/src/data/data.db index 76f97e2..3e78132 100644 Binary files a/src/data/data.db and b/src/data/data.db differ diff --git a/src/pages/_meta.js b/src/pages/_meta.js index 1e3e43b..1385c52 100644 --- a/src/pages/_meta.js +++ b/src/pages/_meta.js @@ -6,6 +6,12 @@ export default { pagination: false, }, }, + contributing: { + title: "Contributing", + theme: { + breadcrumb: false, + }, + }, "--- How to Play": { type: "separator", title: "How to Play", @@ -39,10 +45,4 @@ export default { toc: false, }, }, - "--- Contributing": { - type: "separator", - title: "Contributing", - }, - markdown_and_nextra: "Markdown & Nextra", - code: "Code", }; diff --git a/src/pages/code.mdx b/src/pages/code.mdx deleted file mode 100644 index 241dbf0..0000000 --- a/src/pages/code.mdx +++ /dev/null @@ -1 +0,0 @@ -# Content diff --git a/src/pages/contributing.mdx b/src/pages/contributing.mdx new file mode 100644 index 0000000..b394d29 --- /dev/null +++ b/src/pages/contributing.mdx @@ -0,0 +1,11 @@ +# Contributing + +Community contributions to this project are welcome! Please review the `CONTRIBUTING.md` guide in the GitHub repository. + +Here are some great resources pertaining to writing markdown, or development in the context of Nextra, which is built on top of Next.js, a JavaScript framework: +- [Javascript Guide](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide) +- [Markdown Guide](https://www.markdownguide.org/getting-started/) +- [MDX](https://mdxjs.com/) +- [Next.js](https://nextjs.org/docs) +- [Nextra](https://nextra.site/docs) + diff --git a/src/pages/index.mdx b/src/pages/index.mdx index 66dd364..cd6235f 100644 --- a/src/pages/index.mdx +++ b/src/pages/index.mdx @@ -2,7 +2,7 @@ import { Callout } from "nextra/components"; # About -Welcome to the Hextraction Catalog! +Welcome to the Hextraction Catalog! This site is under active development by [cadeluca](https://github.com/cadeluca). ## What's all this about? @@ -11,15 +11,16 @@ Welcome to the Hextraction Catalog! Hextraction is a free, open source board game designed for 3D printing by [Zach Freedman](https://www.youtube.com/@ZackFreedman). You can read more about it on the [official site](https://www.playhextraction.com/what-in-tarnation). Please note that this site is purely a community effort and not directly affiliated with Zach or Voidstar Lab. -If you have questions, for example how to get started printing the game, the community discord is the perfect place. +If you have questions about the game, for example how to get started printing the game, the Voidstar Lab [Discord](https://discord.com/invite/voidstarlab) is the ideal place. The Discord server is also linked in the site's navigation bar. ### The Site This site assumes you have a basic understanding of the game. -The goal is to make it easy to browse new ways to play and search the countless community tiles to play with! +The goal is to make it easy to browse new ways to play and search the countless community tiles to play with! Individual tile pages are generated from data - these pages are in the very early stages. You can explore the full list via the Tile Table. - - **COMING SOON:** the sortable, filterable, ergonomic Tile Table! + + The Tile Table [experimental] is [live](/tile_table) - give it a try and share + your feedback! This site is developed using Nextra, a documentation framework built with Next.js. @@ -33,6 +34,6 @@ It is highly encouraged if you are a tile maker that you add your tiles to the s Please be respectful of the formatting set by the sheet maintainers! - **COMING SOON:** auto updates via cronjob (in github actions) once the tile + To be enabled soon: auto updates via cronjob (in github actions) once the tile page design has more detail. diff --git a/src/pages/markdown_and_nextra.mdx b/src/pages/markdown_and_nextra.mdx deleted file mode 100644 index 4aa2677..0000000 --- a/src/pages/markdown_and_nextra.mdx +++ /dev/null @@ -1,9 +0,0 @@ -# Markdown & Nextra - -If you are the type of contributor who wants to write pages, you'll want to become familiar with Markdown syntax and Nextra. - -## Markdown - -## Nextra - -[docs](https://nextra.site/docs) \ No newline at end of file diff --git a/src/pages/rulesets/_meta.js b/src/pages/rulesets/_meta.js index eaa1b98..6a4bbad 100644 --- a/src/pages/rulesets/_meta.js +++ b/src/pages/rulesets/_meta.js @@ -1,3 +1,3 @@ export default { - community_rules_template: "Template" + "small_changes": "Small Changes" } \ No newline at end of file diff --git a/src/pages/rulesets/boss_rush.mdx b/src/pages/rulesets/boss_rush.mdx index 41b2f25..109692a 100644 --- a/src/pages/rulesets/boss_rush.mdx +++ b/src/pages/rulesets/boss_rush.mdx @@ -1 +1,3 @@ -# Boss Rush \ No newline at end of file +# Boss Rush + +This page will contain rules and tips for the Boss Rush mode. \ No newline at end of file diff --git a/src/pages/rulesets/community_rules_template.mdx b/src/pages/rulesets/community_rules_template.mdx deleted file mode 100644 index 3a653f1..0000000 --- a/src/pages/rulesets/community_rules_template.mdx +++ /dev/null @@ -1,3 +0,0 @@ -# Community Rulesets - -todo diff --git a/src/pages/rulesets/points.mdx b/src/pages/rulesets/points.mdx deleted file mode 100644 index 3adae71..0000000 --- a/src/pages/rulesets/points.mdx +++ /dev/null @@ -1 +0,0 @@ -# Point System \ No newline at end of file diff --git a/src/pages/rulesets/small_changes.mdx b/src/pages/rulesets/small_changes.mdx new file mode 100644 index 0000000..f1a8004 --- /dev/null +++ b/src/pages/rulesets/small_changes.mdx @@ -0,0 +1,28 @@ +import { Callout } from "nextra/components"; + +# Small Changes + +Do you play open-handed? Do you _let players choose tiles?_ Alternate ways to play can engage your friends, keep the game fresh, or resolve pain points - it all depends on what works best for you. Have a small change you've enjoyed, or play the game in a completely unique, brand new way? Submit a Pull Request with the `ruleset` label and we'll figure out if it is best suited for this page or it's own sub page! + +## Using a Point System + +The most common way [I](https://thangs.com/designer/cadeluca) play is with a point system. My Hextraction games were _too_ quick before this change, but it's all about preference and who you play with. My go-to for Points: + +- Establish a baseline: scoring a goal is one point. Then for alt-win condition tiles, opt to vote for something that feels rewarding but not instaneous (unless the tile is truly crazy and you want it to be a true win). +- Get creative: Some tiles work all too well as punishments. Take the blue shell tile for example, a quick rule modification, and now the player in first place might lose some points when the shell is destroyed! +- Set a time limit, or a winning score: I've done short games at a 5-point cap and medium/long games at 10. Other times, I've used a time limit, and the winner is who has the most at the end of the game. + + + Trust me, you don't want an hour long stalled game where no one is even close + to the winning score! Tune the score amount to the number of players or implement a timer. + + +## Reaching Each Goal + +Instead of one goal to win, or points per goal, what if you had to hit every goal? The Goals change refers to requiring scoring in each goal. +With a standard board, this just means just scoring in the other goal, but you can increase the challenge through community models like [Inaudable's](https://thangs.com/designer/Inaudable) [Modular Hextraction Board](https://thangs.com/designer/Inaudable/3d-model/Modular%2520Hextraction%2520Board%2521-972454). + +I find this rule change is most optimal with their models, but not a requirement. Using their the three-segment goal design, if building a standard board with two "goals" you now have _six_ goals. +The flexibility of the board and goal design allows you to break up and disperse the goals, add more, or take them away. You can scale the difficulty as you wish. + +The spirit of this change is having to navigate the board in different ways to achieve the win, plus introducing conflict as your opponents will likely interfere with you as they play toward a different goal! \ No newline at end of file diff --git a/src/pages/rulesets/tokens.mdx b/src/pages/rulesets/tokens.mdx deleted file mode 100644 index 00c3741..0000000 --- a/src/pages/rulesets/tokens.mdx +++ /dev/null @@ -1 +0,0 @@ -# Token System \ No newline at end of file diff --git a/src/pages/tile_table.mdx b/src/pages/tile_table.mdx index 98fdc0b..1c6140c 100644 --- a/src/pages/tile_table.mdx +++ b/src/pages/tile_table.mdx @@ -1,5 +1,4 @@ import TileTable from "../components/TileTable"; -import TakeMeBackButton from "../components/TakeMeBack"; import { getTiles } from "../data/db"; import { Callout } from "nextra/components"; diff --git a/src/pages/tiles/1-Up.mdx b/src/pages/tiles/1-Up.mdx new file mode 100644 index 0000000..234f0c8 --- /dev/null +++ b/src/pages/tiles/1-Up.mdx @@ -0,0 +1,118 @@ +--- +title: "1-Up" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# 1-Up + + + } + title="Model Page" + href="https://than.gs/m/887119" + /> + } + title="Author" + href="https://thangs.com/designer/andrewtho5942" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/180.mdx b/src/pages/tiles/180.mdx new file mode 100644 index 0000000..c8bb33d --- /dev/null +++ b/src/pages/tiles/180.mdx @@ -0,0 +1,118 @@ +--- +title: "180" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# 180 + + + } + title="Model Page" + href="https://than.gs/m/1116280" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/1_3_Basic_(Pack).mdx b/src/pages/tiles/1_3_Basic_(Pack).mdx index f99e4a9..f0bc678 100644 --- a/src/pages/tiles/1_3_Basic_(Pack).mdx +++ b/src/pages/tiles/1_3_Basic_(Pack).mdx @@ -4,11 +4,10 @@ title: "1/3 Basic (Pack)" import { Cards } from "nextra/components"; import { BoxIcon, AccountIcon } from "../../components/icons"; -import HorizontalGrid from "../../components/HorizontalGrid"; -import HorizontalGrid2 from "../../components/HorizontalGrid2"; -import CardBox from "../../components/CardBox"; -import TileDetail from "../../components/TileDetail"; -import NextraTable from "../../components/NextraTable"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + # 1/3 Basic (Pack) @@ -25,11 +24,95 @@ import NextraTable from "../../components/NextraTable"; /> ---- +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + -{/* */} +## Visual Example 3 (separate my higher level tag) +### Mechanics + +### Cause + + +### Action + + +### Special + + +### Components + --- -Pictures (for thangs.com models) coming soon! +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/3_Curves.mdx b/src/pages/tiles/3_Curves.mdx new file mode 100644 index 0000000..2525bf3 --- /dev/null +++ b/src/pages/tiles/3_Curves.mdx @@ -0,0 +1,118 @@ +--- +title: "3 Curves" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# 3 Curves + + + } + title="Model Page" + href="https://than.gs/m/914317" + /> + } + title="Author" + href="https://thangs.com/designer/BamBam%20Design" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/6C.mdx b/src/pages/tiles/6C.mdx new file mode 100644 index 0000000..f1e76b0 --- /dev/null +++ b/src/pages/tiles/6C.mdx @@ -0,0 +1,118 @@ +--- +title: "6C" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# 6C + + + } + title="Model Page" + href="https://than.gs/m/875060" + /> + } + title="Author" + href="https://thangs.com/designer/albertrl837" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/6_Holes.mdx b/src/pages/tiles/6_Holes.mdx new file mode 100644 index 0000000..e7384f9 --- /dev/null +++ b/src/pages/tiles/6_Holes.mdx @@ -0,0 +1,118 @@ +--- +title: "6 Holes" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# 6 Holes + + + } + title="Model Page" + href="https://www.printables.com/model/763636" + /> + } + title="Author" + href="https://www.printables.com/@Zdrapek_1742951" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/AY_Trap.mdx b/src/pages/tiles/AY_Trap.mdx new file mode 100644 index 0000000..87bef13 --- /dev/null +++ b/src/pages/tiles/AY_Trap.mdx @@ -0,0 +1,118 @@ +--- +title: "AY Trap" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# AY Trap + + + } + title="Model Page" + href="https://than.gs/m/1003672" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Access_Denied.mdx b/src/pages/tiles/Access_Denied.mdx new file mode 100644 index 0000000..2f62005 --- /dev/null +++ b/src/pages/tiles/Access_Denied.mdx @@ -0,0 +1,118 @@ +--- +title: "Access Denied" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Access Denied + + + } + title="Model Page" + href="https://makerworld.com/en/models/570896#profileId-490842" + /> + } + title="Author" + href="https://makerworld.com/en/@ungood" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Airlock.mdx b/src/pages/tiles/Airlock.mdx new file mode 100644 index 0000000..339b70d --- /dev/null +++ b/src/pages/tiles/Airlock.mdx @@ -0,0 +1,118 @@ +--- +title: "Airlock" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Airlock + + + } + title="Model Page" + href="https://than.gs/m/903216" + /> + } + title="Author" + href="https://thangs.com/designer/IceChes" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Airlock_Spinner.mdx b/src/pages/tiles/Airlock_Spinner.mdx new file mode 100644 index 0000000..5739960 --- /dev/null +++ b/src/pages/tiles/Airlock_Spinner.mdx @@ -0,0 +1,118 @@ +--- +title: "Airlock Spinner" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Airlock Spinner + + + } + title="Model Page" + href="https://than.gs/m/1081749" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/AltWave.mdx b/src/pages/tiles/AltWave.mdx new file mode 100644 index 0000000..99a20cc --- /dev/null +++ b/src/pages/tiles/AltWave.mdx @@ -0,0 +1,118 @@ +--- +title: "AltWave" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# AltWave + + + } + title="Model Page" + href="https://than.gs/m/1031259" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Alt_Secret_(Pack).mdx b/src/pages/tiles/Alt_Secret_(Pack).mdx new file mode 100644 index 0000000..eb3e6cb --- /dev/null +++ b/src/pages/tiles/Alt_Secret_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Alt Secret (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Alt Secret (Pack) + + + } + title="Model Page" + href="https://www.printables.com/model/594135" + /> + } + title="Author" + href="https://www.printables.com/@AlexC_833027" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Alternator.mdx b/src/pages/tiles/Alternator.mdx new file mode 100644 index 0000000..af46379 --- /dev/null +++ b/src/pages/tiles/Alternator.mdx @@ -0,0 +1,118 @@ +--- +title: "Alternator" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Alternator + + + } + title="Model Page" + href="https://than.gs/m/1116292" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/An-Tile-Kythera.mdx b/src/pages/tiles/An-Tile-Kythera.mdx new file mode 100644 index 0000000..8f0c963 --- /dev/null +++ b/src/pages/tiles/An-Tile-Kythera.mdx @@ -0,0 +1,118 @@ +--- +title: "An-Tile-Kythera" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# An-Tile-Kythera + + + } + title="Model Page" + href="https://than.gs/m/923444" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Ancestral_Recall.mdx b/src/pages/tiles/Ancestral_Recall.mdx new file mode 100644 index 0000000..27e120a --- /dev/null +++ b/src/pages/tiles/Ancestral_Recall.mdx @@ -0,0 +1,118 @@ +--- +title: "Ancestral Recall" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Ancestral Recall + + + } + title="Model Page" + href="https://than.gs/m/948925" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Angel_Down.mdx b/src/pages/tiles/Angel_Down.mdx new file mode 100644 index 0000000..090facd --- /dev/null +++ b/src/pages/tiles/Angel_Down.mdx @@ -0,0 +1,118 @@ +--- +title: "Angel Down" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Angel Down + + + } + title="Model Page" + href="https://than.gs/m/902916" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Angel_Up.mdx b/src/pages/tiles/Angel_Up.mdx new file mode 100644 index 0000000..6409e88 --- /dev/null +++ b/src/pages/tiles/Angel_Up.mdx @@ -0,0 +1,118 @@ +--- +title: "Angel Up" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Angel Up + + + } + title="Model Page" + href="https://than.gs/m/902947" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Angry_Crab.mdx b/src/pages/tiles/Angry_Crab.mdx new file mode 100644 index 0000000..641b694 --- /dev/null +++ b/src/pages/tiles/Angry_Crab.mdx @@ -0,0 +1,118 @@ +--- +title: "Angry Crab" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Angry Crab + + + } + title="Model Page" + href="https://than.gs/m/911792" + /> + } + title="Author" + href="https://thangs.com/designer/hpalinux" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Aqueduct_I.mdx b/src/pages/tiles/Aqueduct_I.mdx new file mode 100644 index 0000000..8223387 --- /dev/null +++ b/src/pages/tiles/Aqueduct_I.mdx @@ -0,0 +1,118 @@ +--- +title: "Aqueduct I" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Aqueduct I + + + } + title="Model Page" + href="https://than.gs/m/914544" + /> + } + title="Author" + href="https://thangs.com/designer/BitTorrent" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Aqueduct_J.mdx b/src/pages/tiles/Aqueduct_J.mdx new file mode 100644 index 0000000..bade096 --- /dev/null +++ b/src/pages/tiles/Aqueduct_J.mdx @@ -0,0 +1,118 @@ +--- +title: "Aqueduct J" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Aqueduct J + + + } + title="Model Page" + href="https://than.gs/m/914537" + /> + } + title="Author" + href="https://thangs.com/designer/BitTorrent" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Aqueduct_Ramp.mdx b/src/pages/tiles/Aqueduct_Ramp.mdx new file mode 100644 index 0000000..fc5984b --- /dev/null +++ b/src/pages/tiles/Aqueduct_Ramp.mdx @@ -0,0 +1,118 @@ +--- +title: "Aqueduct Ramp" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Aqueduct Ramp + + + } + title="Model Page" + href="https://than.gs/m/914623" + /> + } + title="Author" + href="https://thangs.com/designer/BitTorrent" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Aqueduct__Roman_Spa.mdx b/src/pages/tiles/Aqueduct__Roman_Spa.mdx new file mode 100644 index 0000000..f47b3e4 --- /dev/null +++ b/src/pages/tiles/Aqueduct__Roman_Spa.mdx @@ -0,0 +1,118 @@ +--- +title: "Aqueduct, Roman Spa" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Aqueduct, Roman Spa + + + } + title="Model Page" + href="https://than.gs/m/914553" + /> + } + title="Author" + href="https://thangs.com/designer/BitTorrent" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Ascend.mdx b/src/pages/tiles/Ascend.mdx new file mode 100644 index 0000000..de419b6 --- /dev/null +++ b/src/pages/tiles/Ascend.mdx @@ -0,0 +1,118 @@ +--- +title: "Ascend" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Ascend + + + } + title="Model Page" + href="https://than.gs/m/980132" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Ascent.mdx b/src/pages/tiles/Ascent.mdx new file mode 100644 index 0000000..437bfde --- /dev/null +++ b/src/pages/tiles/Ascent.mdx @@ -0,0 +1,118 @@ +--- +title: "Ascent" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Ascent + + + } + title="Model Page" + href="https://than.gs/m/903210" + /> + } + title="Author" + href="https://thangs.com/designer/IceChes" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Assist.mdx b/src/pages/tiles/Assist.mdx new file mode 100644 index 0000000..8990082 --- /dev/null +++ b/src/pages/tiles/Assist.mdx @@ -0,0 +1,118 @@ +--- +title: "Assist" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Assist + + + } + title="Model Page" + href="https://www.printables.com/model/979391" + /> + } + title="Author" + href="https://www.printables.com/@CallumMcLach_2078891" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Auction.mdx b/src/pages/tiles/Auction.mdx new file mode 100644 index 0000000..2021d2e --- /dev/null +++ b/src/pages/tiles/Auction.mdx @@ -0,0 +1,118 @@ +--- +title: "Auction" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Auction + + + } + title="Model Page" + href="https://than.gs/m/939112" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Avalanche_.mdx b/src/pages/tiles/Avalanche_.mdx new file mode 100644 index 0000000..ba0f6cf --- /dev/null +++ b/src/pages/tiles/Avalanche_.mdx @@ -0,0 +1,118 @@ +--- +title: "Avalanche!" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Avalanche! + + + } + title="Model Page" + href="https://www.printables.com/model/517091" + /> + } + title="Author" + href="https://www.printables.com/@keneispike_193302" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Backrooms.mdx b/src/pages/tiles/Backrooms.mdx new file mode 100644 index 0000000..3931df1 --- /dev/null +++ b/src/pages/tiles/Backrooms.mdx @@ -0,0 +1,118 @@ +--- +title: "Backrooms" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Backrooms + + + } + title="Model Page" + href="https://than.gs/m/899780" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Backrooms_Remix.mdx b/src/pages/tiles/Backrooms_Remix.mdx new file mode 100644 index 0000000..be771e6 --- /dev/null +++ b/src/pages/tiles/Backrooms_Remix.mdx @@ -0,0 +1,118 @@ +--- +title: "Backrooms Remix" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Backrooms Remix + + + } + title="Model Page" + href="https://www.printables.com/model/557111" + /> + } + title="Author" + href="https://www.printables.com/@Hackjaz" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Balls_Stored_in_the_P.mdx b/src/pages/tiles/Balls_Stored_in_the_P.mdx new file mode 100644 index 0000000..82ef91a --- /dev/null +++ b/src/pages/tiles/Balls_Stored_in_the_P.mdx @@ -0,0 +1,118 @@ +--- +title: "Balls Stored in the P" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Balls Stored in the P + + + } + title="Model Page" + href="https://than.gs/m/883760" + /> + } + title="Author" + href="https://thangs.com/designer/elizupke" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Banana_Peel.mdx b/src/pages/tiles/Banana_Peel.mdx new file mode 100644 index 0000000..a258141 --- /dev/null +++ b/src/pages/tiles/Banana_Peel.mdx @@ -0,0 +1,118 @@ +--- +title: "Banana Peel" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Banana Peel + + + } + title="Model Page" + href="https://than.gs/m/1065473" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Bargain.mdx b/src/pages/tiles/Bargain.mdx new file mode 100644 index 0000000..0eff68e --- /dev/null +++ b/src/pages/tiles/Bargain.mdx @@ -0,0 +1,118 @@ +--- +title: "Bargain" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Bargain + + + } + title="Model Page" + href="https://than.gs/m/1045248" + /> + } + title="Author" + href="https://thangs.com/designer/SlappingCarrot9" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Basic_(Pack).mdx b/src/pages/tiles/Basic_(Pack).mdx new file mode 100644 index 0000000..d5965ad --- /dev/null +++ b/src/pages/tiles/Basic_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Basic (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Basic (Pack) + + + } + title="Model Page" + href="https://than.gs/m/856511" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Battleship.mdx b/src/pages/tiles/Battleship.mdx new file mode 100644 index 0000000..5594f1e --- /dev/null +++ b/src/pages/tiles/Battleship.mdx @@ -0,0 +1,118 @@ +--- +title: "Battleship" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Battleship + + + } + title="Model Page" + href="https://than.gs/m/1127846" + /> + } + title="Author" + href="https://thangs.com/designer/cadeluca" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Benchy_(3Dthee_Version).mdx b/src/pages/tiles/Benchy_(3Dthee_Version).mdx new file mode 100644 index 0000000..80a560e --- /dev/null +++ b/src/pages/tiles/Benchy_(3Dthee_Version).mdx @@ -0,0 +1,118 @@ +--- +title: "Benchy (3Dthee Version)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Benchy (3Dthee Version) + + + } + title="Model Page" + href="https://than.gs/m/873966" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Benchy___Tidal_Wave.mdx b/src/pages/tiles/Benchy___Tidal_Wave.mdx new file mode 100644 index 0000000..0280ac3 --- /dev/null +++ b/src/pages/tiles/Benchy___Tidal_Wave.mdx @@ -0,0 +1,118 @@ +--- +title: "Benchy / Tidal Wave" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Benchy / Tidal Wave + + + } + title="Model Page" + href="https://than.gs/m/948388" + /> + } + title="Author" + href="https://www.printables.com/@JohnPaterson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Beta_Basic_(Pack).mdx b/src/pages/tiles/Beta_Basic_(Pack).mdx new file mode 100644 index 0000000..c2f3e4c --- /dev/null +++ b/src/pages/tiles/Beta_Basic_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Beta Basic (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Beta Basic (Pack) + + + } + title="Model Page" + href="https://than.gs/m/818411" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Beta_Forbidden_Voidstar_Lab.mdx b/src/pages/tiles/Beta_Forbidden_Voidstar_Lab.mdx new file mode 100644 index 0000000..8daef43 --- /dev/null +++ b/src/pages/tiles/Beta_Forbidden_Voidstar_Lab.mdx @@ -0,0 +1,118 @@ +--- +title: "Beta Forbidden Voidstar Lab" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Beta Forbidden Voidstar Lab + + + } + title="Model Page" + href="https://than.gs/m/818412" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Beta_Portal.mdx b/src/pages/tiles/Beta_Portal.mdx new file mode 100644 index 0000000..a64d9e8 --- /dev/null +++ b/src/pages/tiles/Beta_Portal.mdx @@ -0,0 +1,118 @@ +--- +title: "Beta Portal" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Beta Portal + + + } + title="Model Page" + href="https://than.gs/m/837136" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Binary.mdx b/src/pages/tiles/Binary.mdx new file mode 100644 index 0000000..5ccbd68 --- /dev/null +++ b/src/pages/tiles/Binary.mdx @@ -0,0 +1,118 @@ +--- +title: "Binary" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Binary + + + } + title="Model Page" + href="https://than.gs/m/884718" + /> + } + title="Author" + href="https://thangs.com/designer/ransElectronics" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Blue_Shell.mdx b/src/pages/tiles/Blue_Shell.mdx new file mode 100644 index 0000000..6fd0e92 --- /dev/null +++ b/src/pages/tiles/Blue_Shell.mdx @@ -0,0 +1,118 @@ +--- +title: "Blue Shell" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Blue Shell + + + } + title="Model Page" + href="https://than.gs/m/1064646" + /> + } + title="Author" + href="https://thangs.com/designer/Groovadelic%20Gallery" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Blue_Shell_Fancy.mdx b/src/pages/tiles/Blue_Shell_Fancy.mdx new file mode 100644 index 0000000..7915a4c --- /dev/null +++ b/src/pages/tiles/Blue_Shell_Fancy.mdx @@ -0,0 +1,118 @@ +--- +title: "Blue Shell Fancy" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Blue Shell Fancy + + + } + title="Model Page" + href="https://than.gs/m/1067871" + /> + } + title="Author" + href="https://thangs.com/designer/jpvalery" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Board_Leveling_Tool.mdx b/src/pages/tiles/Board_Leveling_Tool.mdx new file mode 100644 index 0000000..5b39a94 --- /dev/null +++ b/src/pages/tiles/Board_Leveling_Tool.mdx @@ -0,0 +1,118 @@ +--- +title: "Board Leveling Tool" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Board Leveling Tool + + + } + title="Model Page" + href="https://than.gs/m/869596" + /> + } + title="Author" + href="https://thangs.com/designer/Endlink" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Bomb.mdx b/src/pages/tiles/Bomb.mdx new file mode 100644 index 0000000..baf5e79 --- /dev/null +++ b/src/pages/tiles/Bomb.mdx @@ -0,0 +1,118 @@ +--- +title: "Bomb" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Bomb + + + } + title="Model Page" + href="https://than.gs/m/980108" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Bomb_Inlayed_Star.mdx b/src/pages/tiles/Bomb_Inlayed_Star.mdx new file mode 100644 index 0000000..83de375 --- /dev/null +++ b/src/pages/tiles/Bomb_Inlayed_Star.mdx @@ -0,0 +1,118 @@ +--- +title: "Bomb Inlayed Star" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Bomb Inlayed Star + + + } + title="Model Page" + href="https://than.gs/m/876266" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Bomb__Cartoon__Errata.mdx b/src/pages/tiles/Bomb__Cartoon__Errata.mdx new file mode 100644 index 0000000..8c618e8 --- /dev/null +++ b/src/pages/tiles/Bomb__Cartoon__Errata.mdx @@ -0,0 +1,118 @@ +--- +title: "Bomb, Cartoon, Errata" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Bomb, Cartoon, Errata + + + } + title="Model Page" + href="https://than.gs/m/948368" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Bomb__Cartoon__Remix.mdx b/src/pages/tiles/Bomb__Cartoon__Remix.mdx new file mode 100644 index 0000000..109e519 --- /dev/null +++ b/src/pages/tiles/Bomb__Cartoon__Remix.mdx @@ -0,0 +1,118 @@ +--- +title: "Bomb, Cartoon, Remix" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Bomb, Cartoon, Remix + + + } + title="Model Page" + href="https://www.printables.com/model/540596" + /> + } + title="Author" + href="https://www.printables.com/@Hackjaz" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Boomarang.mdx b/src/pages/tiles/Boomarang.mdx new file mode 100644 index 0000000..67cdf2e --- /dev/null +++ b/src/pages/tiles/Boomarang.mdx @@ -0,0 +1,118 @@ +--- +title: "Boomarang" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Boomarang + + + } + title="Model Page" + href="https://than.gs/m/953494" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Boss_s_Orders.mdx b/src/pages/tiles/Boss_s_Orders.mdx new file mode 100644 index 0000000..35b4230 --- /dev/null +++ b/src/pages/tiles/Boss_s_Orders.mdx @@ -0,0 +1,118 @@ +--- +title: "Boss's Orders" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Boss's Orders + + + } + title="Model Page" + href="https://than.gs/m/1051702" + /> + } + title="Author" + href="https://thangs.com/designer/zazztheboy" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Bounceback_(BitTorrent).mdx b/src/pages/tiles/Bounceback_(BitTorrent).mdx new file mode 100644 index 0000000..511d47e --- /dev/null +++ b/src/pages/tiles/Bounceback_(BitTorrent).mdx @@ -0,0 +1,118 @@ +--- +title: "Bounceback (BitTorrent)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Bounceback (BitTorrent) + + + } + title="Model Page" + href="https://than.gs/m/918008" + /> + } + title="Author" + href="https://thangs.com/designer/BitTorrent" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Bounceback_(Pro-Metheus).mdx b/src/pages/tiles/Bounceback_(Pro-Metheus).mdx new file mode 100644 index 0000000..c878794 --- /dev/null +++ b/src/pages/tiles/Bounceback_(Pro-Metheus).mdx @@ -0,0 +1,118 @@ +--- +title: "Bounceback (Pro-Metheus)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Bounceback (Pro-Metheus) + + + } + title="Model Page" + href="https://than.gs/m/918034" + /> + } + title="Author" + href="https://thangs.com/designer/Pro-Metheus" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Bridge_Jump_(Pack).mdx b/src/pages/tiles/Bridge_Jump_(Pack).mdx new file mode 100644 index 0000000..1317324 --- /dev/null +++ b/src/pages/tiles/Bridge_Jump_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Bridge/Jump (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Bridge/Jump (Pack) + + + } + title="Model Page" + href="https://than.gs/m/1045231" + /> + } + title="Author" + href="https://thangs.com/designer/Inaudable" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Bridge_Underpass.mdx b/src/pages/tiles/Bridge_Underpass.mdx new file mode 100644 index 0000000..450407a --- /dev/null +++ b/src/pages/tiles/Bridge_Underpass.mdx @@ -0,0 +1,118 @@ +--- +title: "Bridge Underpass" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Bridge Underpass + + + } + title="Model Page" + href="https://than.gs/m/876368" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Bubble_Level.mdx b/src/pages/tiles/Bubble_Level.mdx new file mode 100644 index 0000000..47e5db7 --- /dev/null +++ b/src/pages/tiles/Bubble_Level.mdx @@ -0,0 +1,118 @@ +--- +title: "Bubble Level" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Bubble Level + + + } + title="Model Page" + href="https://than.gs/m/1076844" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Bulbasaur_Ramp.mdx b/src/pages/tiles/Bulbasaur_Ramp.mdx new file mode 100644 index 0000000..bb099ee --- /dev/null +++ b/src/pages/tiles/Bulbasaur_Ramp.mdx @@ -0,0 +1,118 @@ +--- +title: "Bulbasaur Ramp" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Bulbasaur Ramp + + + } + title="Model Page" + href="https://than.gs/m/997515" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Burst.mdx b/src/pages/tiles/Burst.mdx new file mode 100644 index 0000000..110514c --- /dev/null +++ b/src/pages/tiles/Burst.mdx @@ -0,0 +1,118 @@ +--- +title: "Burst" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Burst + + + } + title="Model Page" + href="https://than.gs/m/979110" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/C+Merge.mdx b/src/pages/tiles/C+Merge.mdx new file mode 100644 index 0000000..e2328a5 --- /dev/null +++ b/src/pages/tiles/C+Merge.mdx @@ -0,0 +1,118 @@ +--- +title: "C+Merge" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# C+Merge + + + } + title="Model Page" + href="https://than.gs/m/902200" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Cannon.mdx b/src/pages/tiles/Cannon.mdx new file mode 100644 index 0000000..b5351dc --- /dev/null +++ b/src/pages/tiles/Cannon.mdx @@ -0,0 +1,118 @@ +--- +title: "Cannon" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Cannon + + + } + title="Model Page" + href="https://than.gs/m/874130" + /> + } + title="Author" + href="https://thangs.com/designer/leolson79" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Cartoon_Bomb.mdx b/src/pages/tiles/Cartoon_Bomb.mdx new file mode 100644 index 0000000..db3c9dc --- /dev/null +++ b/src/pages/tiles/Cartoon_Bomb.mdx @@ -0,0 +1,118 @@ +--- +title: "Cartoon Bomb" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Cartoon Bomb + + + } + title="Model Page" + href="https://than.gs/m/856458" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Catch.mdx b/src/pages/tiles/Catch.mdx new file mode 100644 index 0000000..53b13ff --- /dev/null +++ b/src/pages/tiles/Catch.mdx @@ -0,0 +1,118 @@ +--- +title: "Catch" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Catch + + + } + title="Model Page" + href="https://than.gs/m/868729" + /> + } + title="Author" + href="https://thangs.com/designer/andrewtho5942" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Catch_Arm_mod.mdx b/src/pages/tiles/Catch_Arm_mod.mdx new file mode 100644 index 0000000..2bd0cf4 --- /dev/null +++ b/src/pages/tiles/Catch_Arm_mod.mdx @@ -0,0 +1,118 @@ +--- +title: "Catch Arm mod" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Catch Arm mod + + + } + title="Model Page" + href="https://than.gs/m/883381" + /> + } + title="Author" + href="https://thangs.com/designer/keneispike" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Chain_Reactor.mdx b/src/pages/tiles/Chain_Reactor.mdx new file mode 100644 index 0000000..2d28d6f --- /dev/null +++ b/src/pages/tiles/Chain_Reactor.mdx @@ -0,0 +1,118 @@ +--- +title: "Chain Reactor" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Chain Reactor + + + } + title="Model Page" + href="https://than.gs/m/903394" + /> + } + title="Author" + href="https://thangs.com/designer/QTManygo" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Cheater.mdx b/src/pages/tiles/Cheater.mdx new file mode 100644 index 0000000..fd0f0dc --- /dev/null +++ b/src/pages/tiles/Cheater.mdx @@ -0,0 +1,118 @@ +--- +title: "Cheater" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Cheater + + + } + title="Model Page" + href="https://www.printables.com/model/979229" + /> + } + title="Author" + href="https://www.printables.com/@CallumMcLach_2078891" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Chess_(Pack).mdx b/src/pages/tiles/Chess_(Pack).mdx new file mode 100644 index 0000000..280e17b --- /dev/null +++ b/src/pages/tiles/Chess_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Chess (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Chess (Pack) + + + } + title="Model Page" + href="https://than.gs/m/907956" + /> + } + title="Author" + href="https://thangs.com/designer/cswenson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Circular_Basic_(Pack).mdx b/src/pages/tiles/Circular_Basic_(Pack).mdx new file mode 100644 index 0000000..ba3e594 --- /dev/null +++ b/src/pages/tiles/Circular_Basic_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Circular Basic (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Circular Basic (Pack) + + + } + title="Model Page" + href="https://www.printables.com/model/736615" + /> + } + title="Author" + href="https://www.printables.com/@AdamHardin_1650377" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Claymore.mdx b/src/pages/tiles/Claymore.mdx new file mode 100644 index 0000000..7652bf3 --- /dev/null +++ b/src/pages/tiles/Claymore.mdx @@ -0,0 +1,118 @@ +--- +title: "Claymore" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Claymore + + + } + title="Model Page" + href="https://than.gs/m/873942" + /> + } + title="Author" + href="https://thangs.com/designer/moosef" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Clock.mdx b/src/pages/tiles/Clock.mdx new file mode 100644 index 0000000..22a92ac --- /dev/null +++ b/src/pages/tiles/Clock.mdx @@ -0,0 +1,118 @@ +--- +title: "Clock" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Clock + + + } + title="Model Page" + href="https://than.gs/m/977802" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Clone.mdx b/src/pages/tiles/Clone.mdx new file mode 100644 index 0000000..8c051fa --- /dev/null +++ b/src/pages/tiles/Clone.mdx @@ -0,0 +1,118 @@ +--- +title: "Clone" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Clone + + + } + title="Model Page" + href="https://than.gs/m/855930" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Clone_Army.mdx b/src/pages/tiles/Clone_Army.mdx new file mode 100644 index 0000000..e058e3f --- /dev/null +++ b/src/pages/tiles/Clone_Army.mdx @@ -0,0 +1,118 @@ +--- +title: "Clone Army" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Clone Army + + + } + title="Model Page" + href="https://than.gs/m/901310" + /> + } + title="Author" + href="https://thangs.com/designer/andrewtho5942" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Coin_Flip.mdx b/src/pages/tiles/Coin_Flip.mdx new file mode 100644 index 0000000..03409af --- /dev/null +++ b/src/pages/tiles/Coin_Flip.mdx @@ -0,0 +1,118 @@ +--- +title: "Coin Flip" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Coin Flip + + + } + title="Model Page" + href="https://than.gs/m/975594" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Contagion.mdx b/src/pages/tiles/Contagion.mdx new file mode 100644 index 0000000..21ece1f --- /dev/null +++ b/src/pages/tiles/Contagion.mdx @@ -0,0 +1,118 @@ +--- +title: "Contagion" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Contagion + + + } + title="Model Page" + href="https://than.gs/m/874446" + /> + } + title="Author" + href="https://thangs.com/designer/CodeWookiee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Copycat.mdx b/src/pages/tiles/Copycat.mdx new file mode 100644 index 0000000..4235e49 --- /dev/null +++ b/src/pages/tiles/Copycat.mdx @@ -0,0 +1,118 @@ +--- +title: "Copycat" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Copycat + + + } + title="Model Page" + href="https://than.gs/m/930680" + /> + } + title="Author" + href="https://thangs.com/designer/Lykrast" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Countdown.mdx b/src/pages/tiles/Countdown.mdx new file mode 100644 index 0000000..b31cd0e --- /dev/null +++ b/src/pages/tiles/Countdown.mdx @@ -0,0 +1,118 @@ +--- +title: "Countdown" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Countdown + + + } + title="Model Page" + href="https://than.gs/m/1096814" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Cursed_Collection.mdx b/src/pages/tiles/Cursed_Collection.mdx new file mode 100644 index 0000000..0546613 --- /dev/null +++ b/src/pages/tiles/Cursed_Collection.mdx @@ -0,0 +1,118 @@ +--- +title: "Cursed Collection" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Cursed Collection + + + } + title="Model Page" + href="https://than.gs/m/885076" + /> + } + title="Author" + href="https://thangs.com/designer/timothyjackman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Curving_Tile__Hidden_Magnet.mdx b/src/pages/tiles/Curving_Tile__Hidden_Magnet.mdx new file mode 100644 index 0000000..85ed70d --- /dev/null +++ b/src/pages/tiles/Curving_Tile__Hidden_Magnet.mdx @@ -0,0 +1,118 @@ +--- +title: "Curving Tile, Hidden Magnet" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Curving Tile, Hidden Magnet + + + } + title="Model Page" + href="https://than.gs/m/910512" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Cyclone.mdx b/src/pages/tiles/Cyclone.mdx new file mode 100644 index 0000000..9f04986 --- /dev/null +++ b/src/pages/tiles/Cyclone.mdx @@ -0,0 +1,118 @@ +--- +title: "Cyclone" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Cyclone + + + } + title="Model Page" + href="https://than.gs/m/1069584" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/DCI_&_DCI_Cut.mdx b/src/pages/tiles/DCI_&_DCI_Cut.mdx new file mode 100644 index 0000000..404aee4 --- /dev/null +++ b/src/pages/tiles/DCI_&_DCI_Cut.mdx @@ -0,0 +1,118 @@ +--- +title: "DCI & DCI Cut" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# DCI & DCI Cut + + + } + title="Model Page" + href="https://than.gs/m/878604" + /> + } + title="Author" + href="https://thangs.com/designer/MMDaemon" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/DC_Flipper.mdx b/src/pages/tiles/DC_Flipper.mdx new file mode 100644 index 0000000..7dc0926 --- /dev/null +++ b/src/pages/tiles/DC_Flipper.mdx @@ -0,0 +1,118 @@ +--- +title: "DC Flipper" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# DC Flipper + + + } + title="Model Page" + href="https://than.gs/m/942625" + /> + } + title="Author" + href="https://thangs.com/designer/timothyjackman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/DIC_Over.mdx b/src/pages/tiles/DIC_Over.mdx new file mode 100644 index 0000000..f83a441 --- /dev/null +++ b/src/pages/tiles/DIC_Over.mdx @@ -0,0 +1,118 @@ +--- +title: "DIC Over" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# DIC Over + + + } + title="Model Page" + href="https://than.gs/m/871740" + /> + } + title="Author" + href="https://thangs.com/designer/Endlink" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Day_and_Night.mdx b/src/pages/tiles/Day_and_Night.mdx new file mode 100644 index 0000000..b88457c --- /dev/null +++ b/src/pages/tiles/Day_and_Night.mdx @@ -0,0 +1,118 @@ +--- +title: "Day and Night" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Day and Night + + + } + title="Model Page" + href="https://than.gs/m/939115" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Destruction_&_Regrowth_(Pack).mdx b/src/pages/tiles/Destruction_&_Regrowth_(Pack).mdx new file mode 100644 index 0000000..5d78824 --- /dev/null +++ b/src/pages/tiles/Destruction_&_Regrowth_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Destruction & Regrowth (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Destruction & Regrowth (Pack) + + + } + title="Model Page" + href="https://than.gs/m/903988" + /> + } + title="Author" + href="https://thangs.com/designer/Buggy" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Detonate.mdx b/src/pages/tiles/Detonate.mdx new file mode 100644 index 0000000..a87f65a --- /dev/null +++ b/src/pages/tiles/Detonate.mdx @@ -0,0 +1,118 @@ +--- +title: "Detonate" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Detonate + + + } + title="Model Page" + href="https://than.gs/m/924762" + /> + } + title="Author" + href="https://thangs.com/designer/Lykrast" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Dicey_Destroyer.mdx b/src/pages/tiles/Dicey_Destroyer.mdx new file mode 100644 index 0000000..398ff03 --- /dev/null +++ b/src/pages/tiles/Dicey_Destroyer.mdx @@ -0,0 +1,118 @@ +--- +title: "Dicey Destroyer" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Dicey Destroyer + + + } + title="Model Page" + href="https://than.gs/m/883999" + /> + } + title="Author" + href="https://thangs.com/designer/johnlattanzio98" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Dip_and_Hill.mdx b/src/pages/tiles/Dip_and_Hill.mdx new file mode 100644 index 0000000..be0bfc5 --- /dev/null +++ b/src/pages/tiles/Dip_and_Hill.mdx @@ -0,0 +1,118 @@ +--- +title: "Dip and Hill" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Dip and Hill + + + } + title="Model Page" + href="https://than.gs/m/913311" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Dispenser.mdx b/src/pages/tiles/Dispenser.mdx new file mode 100644 index 0000000..c3ff94d --- /dev/null +++ b/src/pages/tiles/Dispenser.mdx @@ -0,0 +1,118 @@ +--- +title: "Dispenser" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Dispenser + + + } + title="Model Page" + href="https://than.gs/m/875412" + /> + } + title="Author" + href="https://thangs.com/designer/SpaceKotik" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Dispenser_Mechanism_Mod.mdx b/src/pages/tiles/Dispenser_Mechanism_Mod.mdx new file mode 100644 index 0000000..286041e --- /dev/null +++ b/src/pages/tiles/Dispenser_Mechanism_Mod.mdx @@ -0,0 +1,118 @@ +--- +title: "Dispenser Mechanism Mod" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Dispenser Mechanism Mod + + + } + title="Model Page" + href="https://than.gs/m/1092026" + /> + } + title="Author" + href="https://thangs.com/designer/heather921" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Divert.mdx b/src/pages/tiles/Divert.mdx new file mode 100644 index 0000000..e19128d --- /dev/null +++ b/src/pages/tiles/Divert.mdx @@ -0,0 +1,118 @@ +--- +title: "Divert" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Divert + + + } + title="Model Page" + href="https://than.gs/m/908608" + /> + } + title="Author" + href="https://thangs.com/designer/andrewtho5942" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Divider.mdx b/src/pages/tiles/Divider.mdx new file mode 100644 index 0000000..1e28fc0 --- /dev/null +++ b/src/pages/tiles/Divider.mdx @@ -0,0 +1,118 @@ +--- +title: "Divider" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Divider + + + } + title="Model Page" + href="https://than.gs/m/1113977" + /> + } + title="Author" + href="https://thangs.com/designer/cadeluca" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Donkey_Kong.mdx b/src/pages/tiles/Donkey_Kong.mdx new file mode 100644 index 0000000..4699015 --- /dev/null +++ b/src/pages/tiles/Donkey_Kong.mdx @@ -0,0 +1,118 @@ +--- +title: "Donkey Kong" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Donkey Kong + + + } + title="Model Page" + href="https://than.gs/m/931826" + /> + } + title="Author" + href="https://thangs.com/designer/Orange%20Gaming%20System" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Double_&_Triple_Trap_Fixed.mdx b/src/pages/tiles/Double_&_Triple_Trap_Fixed.mdx new file mode 100644 index 0000000..5a6fbc2 --- /dev/null +++ b/src/pages/tiles/Double_&_Triple_Trap_Fixed.mdx @@ -0,0 +1,118 @@ +--- +title: "Double & Triple Trap Fixed" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Double & Triple Trap Fixed + + + } + title="Model Page" + href="https://than.gs/m/903155" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Double_C_and_Triple_C.mdx b/src/pages/tiles/Double_C_and_Triple_C.mdx new file mode 100644 index 0000000..a28a8fb --- /dev/null +++ b/src/pages/tiles/Double_C_and_Triple_C.mdx @@ -0,0 +1,118 @@ +--- +title: "Double C and Triple C" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Double C and Triple C + + + } + title="Model Page" + href="https://than.gs/m/979116" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Double_I.mdx b/src/pages/tiles/Double_I.mdx new file mode 100644 index 0000000..7fafa5c --- /dev/null +++ b/src/pages/tiles/Double_I.mdx @@ -0,0 +1,118 @@ +--- +title: "Double I" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Double I + + + } + title="Model Page" + href="https://www.thingiverse.com/thing:6090874" + /> + } + title="Author" + href="https://www.thingiverse.com/Pjw9308" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Double_Lanes_(Pack).mdx b/src/pages/tiles/Double_Lanes_(Pack).mdx new file mode 100644 index 0000000..dfd94c9 --- /dev/null +++ b/src/pages/tiles/Double_Lanes_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Double Lanes (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Double Lanes (Pack) + + + } + title="Model Page" + href="https://than.gs/m/1061128" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Double_and_Triple_Trap.mdx b/src/pages/tiles/Double_and_Triple_Trap.mdx new file mode 100644 index 0000000..03b74f2 --- /dev/null +++ b/src/pages/tiles/Double_and_Triple_Trap.mdx @@ -0,0 +1,118 @@ +--- +title: "Double and Triple Trap" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Double and Triple Trap + + + } + title="Model Page" + href="https://than.gs/m/837140" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Draw_Two.mdx b/src/pages/tiles/Draw_Two.mdx new file mode 100644 index 0000000..edf306f --- /dev/null +++ b/src/pages/tiles/Draw_Two.mdx @@ -0,0 +1,118 @@ +--- +title: "Draw Two" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Draw Two + + + } + title="Model Page" + href="https://than.gs/m/1044329" + /> + } + title="Author" + href="https://thangs.com/designer/SlappingCarrot9" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Dress_and_Strip.mdx b/src/pages/tiles/Dress_and_Strip.mdx new file mode 100644 index 0000000..e0ca112 --- /dev/null +++ b/src/pages/tiles/Dress_and_Strip.mdx @@ -0,0 +1,118 @@ +--- +title: "Dress and Strip" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Dress and Strip + + + } + title="Model Page" + href="https://than.gs/m/899753" + /> + } + title="Author" + href="https://thangs.com/designer/ransElectronics" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Drinxtraction.mdx b/src/pages/tiles/Drinxtraction.mdx new file mode 100644 index 0000000..60cc79a --- /dev/null +++ b/src/pages/tiles/Drinxtraction.mdx @@ -0,0 +1,118 @@ +--- +title: "Drinxtraction" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Drinxtraction + + + } + title="Model Page" + href="https://than.gs/m/863275" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Earthquake.mdx b/src/pages/tiles/Earthquake.mdx new file mode 100644 index 0000000..2f37f89 --- /dev/null +++ b/src/pages/tiles/Earthquake.mdx @@ -0,0 +1,118 @@ +--- +title: "Earthquake" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Earthquake + + + } + title="Model Page" + href="https://than.gs/m/1069585" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Edge.mdx b/src/pages/tiles/Edge.mdx new file mode 100644 index 0000000..b06edd2 --- /dev/null +++ b/src/pages/tiles/Edge.mdx @@ -0,0 +1,118 @@ +--- +title: "Edge" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Edge + + + } + title="Model Page" + href="https://than.gs/m/1119407" + /> + } + title="Author" + href="https://thangs.com/designer/Drubble" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Extra_Secret_(Pack).mdx b/src/pages/tiles/Extra_Secret_(Pack).mdx new file mode 100644 index 0000000..31a7c3d --- /dev/null +++ b/src/pages/tiles/Extra_Secret_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Extra Secret (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Extra Secret (Pack) + + + } + title="Model Page" + href="https://than.gs/m/886663" + /> + } + title="Author" + href="https://thangs.com/designer/kkastersen" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Eye_Spy.mdx b/src/pages/tiles/Eye_Spy.mdx new file mode 100644 index 0000000..89d32a5 --- /dev/null +++ b/src/pages/tiles/Eye_Spy.mdx @@ -0,0 +1,118 @@ +--- +title: "Eye Spy" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Eye Spy + + + } + title="Model Page" + href="https://than.gs/m/980307" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/FU.mdx b/src/pages/tiles/FU.mdx new file mode 100644 index 0000000..6b38052 --- /dev/null +++ b/src/pages/tiles/FU.mdx @@ -0,0 +1,118 @@ +--- +title: "FU" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# FU + + + } + title="Model Page" + href="https://than.gs/m/884717" + /> + } + title="Author" + href="https://thangs.com/designer/janchrisklein" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Fate.mdx b/src/pages/tiles/Fate.mdx new file mode 100644 index 0000000..c249f57 --- /dev/null +++ b/src/pages/tiles/Fate.mdx @@ -0,0 +1,118 @@ +--- +title: "Fate" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Fate + + + } + title="Model Page" + href="https://than.gs/m/869236" + /> + } + title="Author" + href="https://thangs.com/designer/andrewtho5942" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Filament_Double_Doronomo.mdx b/src/pages/tiles/Filament_Double_Doronomo.mdx new file mode 100644 index 0000000..a4567c2 --- /dev/null +++ b/src/pages/tiles/Filament_Double_Doronomo.mdx @@ -0,0 +1,118 @@ +--- +title: "Filament Double Doronomo" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Filament Double Doronomo + + + } + title="Model Page" + href="https://thangs.com/designer/3Dthee/3d-model/Hextraction%20-%20Filament%20Version%20Double%20tile%20Doronomo-902956" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Filament_Dual_Pachinko.mdx b/src/pages/tiles/Filament_Dual_Pachinko.mdx new file mode 100644 index 0000000..e714614 --- /dev/null +++ b/src/pages/tiles/Filament_Dual_Pachinko.mdx @@ -0,0 +1,118 @@ +--- +title: "Filament Dual Pachinko" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Filament Dual Pachinko + + + } + title="Model Page" + href="https://thangs.com/designer/3Dthee/3d-model/Hextraction%20-%20Filament%20Version%20Dual%20Pachinko%20Tile%28s%29-902954" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Filament_Tile_for_Two.mdx b/src/pages/tiles/Filament_Tile_for_Two.mdx new file mode 100644 index 0000000..35bac1b --- /dev/null +++ b/src/pages/tiles/Filament_Tile_for_Two.mdx @@ -0,0 +1,118 @@ +--- +title: "Filament Tile for Two" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Filament Tile for Two + + + } + title="Model Page" + href="https://thangs.com/designer/3Dthee/3d-model/Hextraction%20-%20Filament%20version%20-%20Tile%20Built%20for%20Two-902952" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Fixed_Secret.mdx b/src/pages/tiles/Fixed_Secret.mdx new file mode 100644 index 0000000..1d66cd0 --- /dev/null +++ b/src/pages/tiles/Fixed_Secret.mdx @@ -0,0 +1,118 @@ +--- +title: "Fixed Secret" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Fixed Secret + + + } + title="Model Page" + href="https://thangs.com/designer/johnlattanzio98/3d-model/FIXED%20Secret%20Hextraction%20Tiles-878686" + /> + } + title="Author" + href="johnlattanzio98 " + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Fixed_Secret_Flipper_.mdx b/src/pages/tiles/Fixed_Secret_Flipper_.mdx new file mode 100644 index 0000000..d4d3ee2 --- /dev/null +++ b/src/pages/tiles/Fixed_Secret_Flipper_.mdx @@ -0,0 +1,118 @@ +--- +title: "Fixed Secret Flipper " +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Fixed Secret Flipper + + + } + title="Model Page" + href="https://thangs.com/designer/timothyjackman/3d-model/Fixed%20Hextraction%20Secret%20Flipper%20Tile-884171" + /> + } + title="Author" + href="https://thangs.com/designer/timothyjackman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Fixed_Secret_Lid.mdx b/src/pages/tiles/Fixed_Secret_Lid.mdx new file mode 100644 index 0000000..9ca4415 --- /dev/null +++ b/src/pages/tiles/Fixed_Secret_Lid.mdx @@ -0,0 +1,118 @@ +--- +title: "Fixed Secret Lid" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Fixed Secret Lid + + + } + title="Model Page" + href="https://thangs.com/designer/johnlattanzio98/3d-model/Hextraction%20Improved%20Secret%20Lid%20No%20Supports%20Required-878671" + /> + } + title="Author" + href="johnlattanzio98 " + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Flash_Freeze_+_Ice_Block.mdx b/src/pages/tiles/Flash_Freeze_+_Ice_Block.mdx new file mode 100644 index 0000000..2f47935 --- /dev/null +++ b/src/pages/tiles/Flash_Freeze_+_Ice_Block.mdx @@ -0,0 +1,118 @@ +--- +title: "Flash Freeze + Ice Block" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Flash Freeze + Ice Block + + + } + title="Model Page" + href="https://than.gs/m/1064288" + /> + } + title="Author" + href="https://thangs.com/designer/Lykrast" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Flip-Flop.mdx b/src/pages/tiles/Flip-Flop.mdx new file mode 100644 index 0000000..2b8ae68 --- /dev/null +++ b/src/pages/tiles/Flip-Flop.mdx @@ -0,0 +1,118 @@ +--- +title: "Flip-Flop" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Flip-Flop + + + } + title="Model Page" + href="https://than.gs/m/856502" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Flipper_Rework.mdx b/src/pages/tiles/Flipper_Rework.mdx new file mode 100644 index 0000000..d316d63 --- /dev/null +++ b/src/pages/tiles/Flipper_Rework.mdx @@ -0,0 +1,118 @@ +--- +title: "Flipper Rework" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Flipper Rework + + + } + title="Model Page" + href="https://than.gs/m/903213" + /> + } + title="Author" + href="https://thangs.com/designer/IceChes" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Foundation.mdx b/src/pages/tiles/Foundation.mdx new file mode 100644 index 0000000..8f0f848 --- /dev/null +++ b/src/pages/tiles/Foundation.mdx @@ -0,0 +1,118 @@ +--- +title: "Foundation" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Foundation + + + } + title="Model Page" + href="https://than.gs/m/899603" + /> + } + title="Author" + href="https://thangs.com/designer/elizupke" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Game_Board_(Zack).mdx b/src/pages/tiles/Game_Board_(Zack).mdx new file mode 100644 index 0000000..c2f442a --- /dev/null +++ b/src/pages/tiles/Game_Board_(Zack).mdx @@ -0,0 +1,118 @@ +--- +title: "Game Board (Zack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Game Board (Zack) + + + } + title="Model Page" + href="https://than.gs/m/856439" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Gatekeeper.mdx b/src/pages/tiles/Gatekeeper.mdx new file mode 100644 index 0000000..e8b4af1 --- /dev/null +++ b/src/pages/tiles/Gatekeeper.mdx @@ -0,0 +1,118 @@ +--- +title: "Gatekeeper" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Gatekeeper + + + } + title="Model Page" + href="https://than.gs/m/888121" + /> + } + title="Author" + href="https://thangs.com/designer/CodeWookiee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Gauss_Cannon.mdx b/src/pages/tiles/Gauss_Cannon.mdx new file mode 100644 index 0000000..5144b5a --- /dev/null +++ b/src/pages/tiles/Gauss_Cannon.mdx @@ -0,0 +1,118 @@ +--- +title: "Gauss Cannon" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Gauss Cannon + + + } + title="Model Page" + href="https://than.gs/m/874017" + /> + } + title="Author" + href="https://thangs.com/designer/Smileyprinter" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Gauss_Cannon_Spinner.mdx b/src/pages/tiles/Gauss_Cannon_Spinner.mdx new file mode 100644 index 0000000..0b159ab --- /dev/null +++ b/src/pages/tiles/Gauss_Cannon_Spinner.mdx @@ -0,0 +1,118 @@ +--- +title: "Gauss Cannon Spinner" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Gauss Cannon Spinner + + + } + title="Model Page" + href="https://than.gs/m/1081627" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Gear.mdx b/src/pages/tiles/Gear.mdx new file mode 100644 index 0000000..6409ad1 --- /dev/null +++ b/src/pages/tiles/Gear.mdx @@ -0,0 +1,118 @@ +--- +title: "Gear" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Gear + + + } + title="Model Page" + href="https://than.gs/m/856448" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Gear_Spinner.mdx b/src/pages/tiles/Gear_Spinner.mdx new file mode 100644 index 0000000..6552680 --- /dev/null +++ b/src/pages/tiles/Gear_Spinner.mdx @@ -0,0 +1,118 @@ +--- +title: "Gear Spinner" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Gear Spinner + + + } + title="Model Page" + href="https://than.gs/m/975606" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Genie_s_Lamp.mdx b/src/pages/tiles/Genie_s_Lamp.mdx new file mode 100644 index 0000000..8dc963a --- /dev/null +++ b/src/pages/tiles/Genie_s_Lamp.mdx @@ -0,0 +1,118 @@ +--- +title: "Genie's Lamp" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Genie's Lamp + + + } + title="Model Page" + href="https://than.gs/m/980105" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Genie_s_Lamp_Aesthetic.mdx b/src/pages/tiles/Genie_s_Lamp_Aesthetic.mdx new file mode 100644 index 0000000..663bf31 --- /dev/null +++ b/src/pages/tiles/Genie_s_Lamp_Aesthetic.mdx @@ -0,0 +1,118 @@ +--- +title: "Genie's Lamp Aesthetic" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Genie's Lamp Aesthetic + + + } + title="Model Page" + href="https://www.printables.com/model/671335" + /> + } + title="Author" + href="https://www.printables.com/@vgergo_618185" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git "a/src/pages/tiles/Genie\342\200\231s_Lamp_(Card).mdx" "b/src/pages/tiles/Genie\342\200\231s_Lamp_(Card).mdx" new file mode 100644 index 0000000..afd7cef --- /dev/null +++ "b/src/pages/tiles/Genie\342\200\231s_Lamp_(Card).mdx" @@ -0,0 +1,118 @@ +--- +title: "Genie’s Lamp (Card)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Genie’s Lamp (Card) + + + } + title="Model Page" + href="https://www.printables.com/en/model/880180-genies-bottle-tile-card-remastered" + /> + } + title="Author" + href="https://www.printables.com/@CallumMcLach_2078891" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Golf_(Pack).mdx b/src/pages/tiles/Golf_(Pack).mdx new file mode 100644 index 0000000..0aae2c7 --- /dev/null +++ b/src/pages/tiles/Golf_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Golf (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Golf (Pack) + + + } + title="Model Page" + href="https://than.gs/m/911985" + /> + } + title="Author" + href="https://thangs.com/designer/Buggy" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Grass_is_Always_Greener_on_the_Other_Side.mdx b/src/pages/tiles/Grass_is_Always_Greener_on_the_Other_Side.mdx new file mode 100644 index 0000000..e8fac5d --- /dev/null +++ b/src/pages/tiles/Grass_is_Always_Greener_on_the_Other_Side.mdx @@ -0,0 +1,118 @@ +--- +title: "Grass is Always Greener on the Other Side" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Grass is Always Greener on the Other Side + + + } + title="Model Page" + href="https://www.printables.com/model/633660" + /> + } + title="Author" + href="https://www.printables.com/@JohnPaterson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Grave.mdx b/src/pages/tiles/Grave.mdx new file mode 100644 index 0000000..0057d68 --- /dev/null +++ b/src/pages/tiles/Grave.mdx @@ -0,0 +1,118 @@ +--- +title: "Grave" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Grave + + + } + title="Model Page" + href="https://than.gs/m/1055436" + /> + } + title="Author" + href="https://thangs.com/designer/pedgygo" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Gravity.mdx b/src/pages/tiles/Gravity.mdx new file mode 100644 index 0000000..c841a62 --- /dev/null +++ b/src/pages/tiles/Gravity.mdx @@ -0,0 +1,118 @@ +--- +title: "Gravity" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Gravity + + + } + title="Model Page" + href="https://than.gs/m/955711" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Gravity_Storm.mdx b/src/pages/tiles/Gravity_Storm.mdx new file mode 100644 index 0000000..5688e47 --- /dev/null +++ b/src/pages/tiles/Gravity_Storm.mdx @@ -0,0 +1,118 @@ +--- +title: "Gravity Storm" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Gravity Storm + + + } + title="Model Page" + href="https://than.gs/m/924793" + /> + } + title="Author" + href="https://thangs.com/designer/Lykrast" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Gutterball.mdx b/src/pages/tiles/Gutterball.mdx new file mode 100644 index 0000000..f2a0c0a --- /dev/null +++ b/src/pages/tiles/Gutterball.mdx @@ -0,0 +1,118 @@ +--- +title: "Gutterball" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Gutterball + + + } + title="Model Page" + href="https://than.gs/m/874016" + /> + } + title="Author" + href="https://thangs.com/designer/Smoke%20and%20Lights" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Hammer.mdx b/src/pages/tiles/Hammer.mdx new file mode 100644 index 0000000..076ed13 --- /dev/null +++ b/src/pages/tiles/Hammer.mdx @@ -0,0 +1,118 @@ +--- +title: "Hammer" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Hammer + + + } + title="Model Page" + href="https://than.gs/m/884152" + /> + } + title="Author" + href="https://thangs.com/designer/elizupke" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Hammer_(Simplfied).mdx b/src/pages/tiles/Hammer_(Simplfied).mdx new file mode 100644 index 0000000..49cd5fd --- /dev/null +++ b/src/pages/tiles/Hammer_(Simplfied).mdx @@ -0,0 +1,118 @@ +--- +title: "Hammer (Simplfied)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Hammer (Simplfied) + + + } + title="Model Page" + href="https://than.gs/m/980301" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Hammer_Raised_Text.mdx b/src/pages/tiles/Hammer_Raised_Text.mdx new file mode 100644 index 0000000..4831a0e --- /dev/null +++ b/src/pages/tiles/Hammer_Raised_Text.mdx @@ -0,0 +1,118 @@ +--- +title: "Hammer Raised Text" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Hammer Raised Text + + + } + title="Model Page" + href="https://than.gs/m/937337" + /> + } + title="Author" + href="https://thangs.com/designer/staehle" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Hammer__Fancy.mdx b/src/pages/tiles/Hammer__Fancy.mdx new file mode 100644 index 0000000..db7f38e --- /dev/null +++ b/src/pages/tiles/Hammer__Fancy.mdx @@ -0,0 +1,118 @@ +--- +title: "Hammer, Fancy" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Hammer, Fancy + + + } + title="Model Page" + href="https://than.gs/m/956861" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Heads_or_Tails.mdx b/src/pages/tiles/Heads_or_Tails.mdx new file mode 100644 index 0000000..e7f682b --- /dev/null +++ b/src/pages/tiles/Heads_or_Tails.mdx @@ -0,0 +1,118 @@ +--- +title: "Heads or Tails" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Heads or Tails + + + } + title="Model Page" + href="https://than.gs/m/1093404" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Heart_(Pack).mdx b/src/pages/tiles/Heart_(Pack).mdx new file mode 100644 index 0000000..664bee2 --- /dev/null +++ b/src/pages/tiles/Heart_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Heart (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Heart (Pack) + + + } + title="Model Page" + href="https://than.gs/m/907726" + /> + } + title="Author" + href="https://thangs.com/designer/andypiperuk" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Helix.mdx b/src/pages/tiles/Helix.mdx new file mode 100644 index 0000000..e712469 --- /dev/null +++ b/src/pages/tiles/Helix.mdx @@ -0,0 +1,118 @@ +--- +title: "Helix" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Helix + + + } + title="Model Page" + href="https://www.printables.com/model/964447-hextraction-helix-tile" + /> + } + title="Author" + href="https://www.printables.com/@Sebash_688006" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Hex_Ritual.mdx b/src/pages/tiles/Hex_Ritual.mdx new file mode 100644 index 0000000..cac7160 --- /dev/null +++ b/src/pages/tiles/Hex_Ritual.mdx @@ -0,0 +1,118 @@ +--- +title: "Hex Ritual" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Hex Ritual + + + } + title="Model Page" + href="https://than.gs/m/956897" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Hidden_Hole_Asterix.mdx b/src/pages/tiles/Hidden_Hole_Asterix.mdx new file mode 100644 index 0000000..41c04de --- /dev/null +++ b/src/pages/tiles/Hidden_Hole_Asterix.mdx @@ -0,0 +1,118 @@ +--- +title: "Hidden Hole Asterix" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Hidden Hole Asterix + + + } + title="Model Page" + href="https://than.gs/m/909421" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Highway_On-Ramp.mdx b/src/pages/tiles/Highway_On-Ramp.mdx new file mode 100644 index 0000000..dbffcd2 --- /dev/null +++ b/src/pages/tiles/Highway_On-Ramp.mdx @@ -0,0 +1,118 @@ +--- +title: "Highway On-Ramp" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Highway On-Ramp + + + } + title="Model Page" + href="https://than.gs/m/897078" + /> + } + title="Author" + href="https://thangs.com/designer/Smoke%20and%20Lights" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Holographic_DC.mdx b/src/pages/tiles/Holographic_DC.mdx new file mode 100644 index 0000000..2ced518 --- /dev/null +++ b/src/pages/tiles/Holographic_DC.mdx @@ -0,0 +1,118 @@ +--- +title: "Holographic DC" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Holographic DC + + + } + title="Model Page" + href="https://than.gs/m/895424" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Holographic_DIC.mdx b/src/pages/tiles/Holographic_DIC.mdx new file mode 100644 index 0000000..d9a6145 --- /dev/null +++ b/src/pages/tiles/Holographic_DIC.mdx @@ -0,0 +1,118 @@ +--- +title: "Holographic DIC" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Holographic DIC + + + } + title="Model Page" + href="https://than.gs/m/896737" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Holographic_Frame.mdx b/src/pages/tiles/Holographic_Frame.mdx new file mode 100644 index 0000000..b2b4b22 --- /dev/null +++ b/src/pages/tiles/Holographic_Frame.mdx @@ -0,0 +1,118 @@ +--- +title: "Holographic Frame" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Holographic Frame + + + } + title="Model Page" + href="https://than.gs/m/856447" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Holographic_I.mdx b/src/pages/tiles/Holographic_I.mdx new file mode 100644 index 0000000..755519f --- /dev/null +++ b/src/pages/tiles/Holographic_I.mdx @@ -0,0 +1,118 @@ +--- +title: "Holographic I" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Holographic I + + + } + title="Model Page" + href="https://thangs.com/designer/3Dthee/3d-model/Hextraction%20-%20Holographic%20straight%20-%20no%20rules-893928 " + /> + } + title="Author" + href="3Dthee " + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Holographic_I_(Remix).mdx b/src/pages/tiles/Holographic_I_(Remix).mdx new file mode 100644 index 0000000..4668115 --- /dev/null +++ b/src/pages/tiles/Holographic_I_(Remix).mdx @@ -0,0 +1,118 @@ +--- +title: "Holographic I (Remix)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Holographic I (Remix) + + + } + title="Model Page" + href="https://thangs.com/designer/3Dthee/3d-model/Hextraction%20-%20Holographic%20Tileframe%20-%20No%20rules%20-%20Remix-895432 " + /> + } + title="Author" + href="3Dthee " + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Holographic_Rail.mdx b/src/pages/tiles/Holographic_Rail.mdx new file mode 100644 index 0000000..07582f0 --- /dev/null +++ b/src/pages/tiles/Holographic_Rail.mdx @@ -0,0 +1,118 @@ +--- +title: "Holographic Rail" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Holographic Rail + + + } + title="Model Page" + href="https://than.gs/m/895482" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Holographic_Straight.mdx b/src/pages/tiles/Holographic_Straight.mdx new file mode 100644 index 0000000..90aad24 --- /dev/null +++ b/src/pages/tiles/Holographic_Straight.mdx @@ -0,0 +1,118 @@ +--- +title: "Holographic Straight" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Holographic Straight + + + } + title="Model Page" + href="https://than.gs/m/893928" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Holographic_XC.mdx b/src/pages/tiles/Holographic_XC.mdx new file mode 100644 index 0000000..f03c42e --- /dev/null +++ b/src/pages/tiles/Holographic_XC.mdx @@ -0,0 +1,118 @@ +--- +title: "Holographic XC" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Holographic XC + + + } + title="Model Page" + href="https://than.gs/m/913939" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Holographic_XC_(Remix).mdx b/src/pages/tiles/Holographic_XC_(Remix).mdx new file mode 100644 index 0000000..e12c2ed --- /dev/null +++ b/src/pages/tiles/Holographic_XC_(Remix).mdx @@ -0,0 +1,118 @@ +--- +title: "Holographic XC (Remix)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Holographic XC (Remix) + + + } + title="Model Page" + href="https://thangs.com/designer/3Dthee/3d-model/Hextraction%20-%20Holo%20XC%20tile%20-%20One%20peice-913941" + /> + } + title="Author" + href="3Dthee " + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/I.mdx b/src/pages/tiles/I.mdx new file mode 100644 index 0000000..00153c2 --- /dev/null +++ b/src/pages/tiles/I.mdx @@ -0,0 +1,118 @@ +--- +title: "I" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# I + + + } + title="Model Page" + href="https://than.gs/m/979040" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Imitator.mdx b/src/pages/tiles/Imitator.mdx new file mode 100644 index 0000000..3a60315 --- /dev/null +++ b/src/pages/tiles/Imitator.mdx @@ -0,0 +1,118 @@ +--- +title: "Imitator" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Imitator + + + } + title="Model Page" + href="https://than.gs/m/980117" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Iris.mdx b/src/pages/tiles/Iris.mdx new file mode 100644 index 0000000..210c1c5 --- /dev/null +++ b/src/pages/tiles/Iris.mdx @@ -0,0 +1,118 @@ +--- +title: "Iris" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Iris + + + } + title="Model Page" + href="https://than.gs/m/958994" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Iris__Secret.mdx b/src/pages/tiles/Iris__Secret.mdx new file mode 100644 index 0000000..83cca38 --- /dev/null +++ b/src/pages/tiles/Iris__Secret.mdx @@ -0,0 +1,118 @@ +--- +title: "Iris, Secret" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Iris, Secret + + + } + title="Model Page" + href="https://than.gs/m/961454" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Jank.mdx b/src/pages/tiles/Jank.mdx new file mode 100644 index 0000000..3457363 --- /dev/null +++ b/src/pages/tiles/Jank.mdx @@ -0,0 +1,118 @@ +--- +title: "Jank" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Jank + + + } + title="Model Page" + href="https://than.gs/m/913969" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Jellyfish.mdx b/src/pages/tiles/Jellyfish.mdx new file mode 100644 index 0000000..2c18992 --- /dev/null +++ b/src/pages/tiles/Jellyfish.mdx @@ -0,0 +1,118 @@ +--- +title: "Jellyfish" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Jellyfish + + + } + title="Model Page" + href="https://than.gs/m/1003678" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Jerk.mdx b/src/pages/tiles/Jerk.mdx new file mode 100644 index 0000000..0938e0d --- /dev/null +++ b/src/pages/tiles/Jerk.mdx @@ -0,0 +1,118 @@ +--- +title: "Jerk" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Jerk + + + } + title="Model Page" + href="https://than.gs/m/856454" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Jump_(MrPancake).mdx b/src/pages/tiles/Jump_(MrPancake).mdx new file mode 100644 index 0000000..bb3270e --- /dev/null +++ b/src/pages/tiles/Jump_(MrPancake).mdx @@ -0,0 +1,118 @@ +--- +title: "Jump (MrPancake)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Jump (MrPancake) + + + } + title="Model Page" + href="https://than.gs/m/819188" + /> + } + title="Author" + href="https://thangs.com/designer/MrPancake" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Jump_(Ungood).mdx b/src/pages/tiles/Jump_(Ungood).mdx new file mode 100644 index 0000000..855985f --- /dev/null +++ b/src/pages/tiles/Jump_(Ungood).mdx @@ -0,0 +1,118 @@ +--- +title: "Jump (Ungood)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Jump (Ungood) + + + } + title="Model Page" + href="https://makerworld.com/en/models/524677#profileId-441447" + /> + } + title="Author" + href="https://makerworld.com/en/@ungood" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/K_Trap.mdx b/src/pages/tiles/K_Trap.mdx new file mode 100644 index 0000000..3a443b3 --- /dev/null +++ b/src/pages/tiles/K_Trap.mdx @@ -0,0 +1,118 @@ +--- +title: "K Trap" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# K Trap + + + } + title="Model Page" + href="https://than.gs/m/1003680" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Kill_Switch.mdx b/src/pages/tiles/Kill_Switch.mdx new file mode 100644 index 0000000..e015927 --- /dev/null +++ b/src/pages/tiles/Kill_Switch.mdx @@ -0,0 +1,118 @@ +--- +title: "Kill Switch" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Kill Switch + + + } + title="Model Page" + href="https://than.gs/m/863258" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/King.mdx b/src/pages/tiles/King.mdx new file mode 100644 index 0000000..8fdfd85 --- /dev/null +++ b/src/pages/tiles/King.mdx @@ -0,0 +1,118 @@ +--- +title: "King" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# King + + + } + title="Model Page" + href="https://than.gs/m/856479" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/King_(BowTy).mdx b/src/pages/tiles/King_(BowTy).mdx new file mode 100644 index 0000000..97bbc23 --- /dev/null +++ b/src/pages/tiles/King_(BowTy).mdx @@ -0,0 +1,118 @@ +--- +title: "King (BowTy)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# King (BowTy) + + + } + title="Model Page" + href="https://than.gs/m/980116" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/King__Neo.mdx b/src/pages/tiles/King__Neo.mdx new file mode 100644 index 0000000..307f4e2 --- /dev/null +++ b/src/pages/tiles/King__Neo.mdx @@ -0,0 +1,118 @@ +--- +title: "King, Neo" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# King, Neo + + + } + title="Model Page" + href="https://than.gs/m/856479" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Landslide.mdx b/src/pages/tiles/Landslide.mdx new file mode 100644 index 0000000..b72a366 --- /dev/null +++ b/src/pages/tiles/Landslide.mdx @@ -0,0 +1,118 @@ +--- +title: "Landslide" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Landslide + + + } + title="Model Page" + href="https://than.gs/m/903424" + /> + } + title="Author" + href="https://thangs.com/designer/IceChes" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Latch.mdx b/src/pages/tiles/Latch.mdx new file mode 100644 index 0000000..ccc12ff --- /dev/null +++ b/src/pages/tiles/Latch.mdx @@ -0,0 +1,118 @@ +--- +title: "Latch" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Latch + + + } + title="Model Page" + href="https://than.gs/m/909909" + /> + } + title="Author" + href="https://thangs.com/designer/cswenson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Launcher.mdx b/src/pages/tiles/Launcher.mdx new file mode 100644 index 0000000..b06fc71 --- /dev/null +++ b/src/pages/tiles/Launcher.mdx @@ -0,0 +1,118 @@ +--- +title: "Launcher" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Launcher + + + } + title="Model Page" + href="https://than.gs/m/856483" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Left_Right_Randomizer.mdx b/src/pages/tiles/Left_Right_Randomizer.mdx new file mode 100644 index 0000000..df37beb --- /dev/null +++ b/src/pages/tiles/Left_Right_Randomizer.mdx @@ -0,0 +1,118 @@ +--- +title: "Left Right Randomizer" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Left Right Randomizer + + + } + title="Model Page" + href="https://than.gs/m/819717" + /> + } + title="Author" + href="https://thangs.com/designer/MrPancake" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Lego.mdx b/src/pages/tiles/Lego.mdx new file mode 100644 index 0000000..0395334 --- /dev/null +++ b/src/pages/tiles/Lego.mdx @@ -0,0 +1,118 @@ +--- +title: "Lego" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Lego + + + } + title="Model Page" + href="https://than.gs/m/883866" + /> + } + title="Author" + href="https://thangs.com/designer/timothyjackman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Loop-De-Loop.mdx b/src/pages/tiles/Loop-De-Loop.mdx new file mode 100644 index 0000000..f5d43e7 --- /dev/null +++ b/src/pages/tiles/Loop-De-Loop.mdx @@ -0,0 +1,118 @@ +--- +title: "Loop-De-Loop" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Loop-De-Loop + + + } + title="Model Page" + href="https://than.gs/m/873977" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Looting_Flip-Flop.mdx b/src/pages/tiles/Looting_Flip-Flop.mdx new file mode 100644 index 0000000..2119c8e --- /dev/null +++ b/src/pages/tiles/Looting_Flip-Flop.mdx @@ -0,0 +1,118 @@ +--- +title: "Looting Flip-Flop" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Looting Flip-Flop + + + } + title="Model Page" + href="https://than.gs/m/948036" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Love_Trap_Heart.mdx b/src/pages/tiles/Love_Trap_Heart.mdx new file mode 100644 index 0000000..47efd01 --- /dev/null +++ b/src/pages/tiles/Love_Trap_Heart.mdx @@ -0,0 +1,118 @@ +--- +title: "Love Trap Heart" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Love Trap Heart + + + } + title="Model Page" + href="https://than.gs/m/910358" + /> + } + title="Author" + href="https://thangs.com/designer/BitTorrent" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Magnet.mdx b/src/pages/tiles/Magnet.mdx new file mode 100644 index 0000000..e850501 --- /dev/null +++ b/src/pages/tiles/Magnet.mdx @@ -0,0 +1,118 @@ +--- +title: "Magnet" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Magnet + + + } + title="Model Page" + href="https://than.gs/m/980296" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Magnet_Click_Pen.mdx b/src/pages/tiles/Magnet_Click_Pen.mdx new file mode 100644 index 0000000..2ffd66b --- /dev/null +++ b/src/pages/tiles/Magnet_Click_Pen.mdx @@ -0,0 +1,118 @@ +--- +title: "Magnet Click Pen" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Magnet Click Pen + + + } + title="Model Page" + href="https://than.gs/m/1142801" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Magnet_Trap_Asterix.mdx b/src/pages/tiles/Magnet_Trap_Asterix.mdx new file mode 100644 index 0000000..ed9fa85 --- /dev/null +++ b/src/pages/tiles/Magnet_Trap_Asterix.mdx @@ -0,0 +1,118 @@ +--- +title: "Magnet Trap Asterix" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Magnet Trap Asterix + + + } + title="Model Page" + href="https://than.gs/m/897113" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Magnet_Trap_Asterix_Subsurface.mdx b/src/pages/tiles/Magnet_Trap_Asterix_Subsurface.mdx new file mode 100644 index 0000000..29a7989 --- /dev/null +++ b/src/pages/tiles/Magnet_Trap_Asterix_Subsurface.mdx @@ -0,0 +1,118 @@ +--- +title: "Magnet Trap Asterix Subsurface" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Magnet Trap Asterix Subsurface + + + } + title="Model Page" + href="https://than.gs/m/897114" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Magnetic_Kythera.mdx b/src/pages/tiles/Magnetic_Kythera.mdx new file mode 100644 index 0000000..b626b9c --- /dev/null +++ b/src/pages/tiles/Magnetic_Kythera.mdx @@ -0,0 +1,118 @@ +--- +title: "Magnetic Kythera" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Magnetic Kythera + + + } + title="Model Page" + href="https://than.gs/m/1116237" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Make_any_Tile_Secret.mdx b/src/pages/tiles/Make_any_Tile_Secret.mdx new file mode 100644 index 0000000..f4edc5c --- /dev/null +++ b/src/pages/tiles/Make_any_Tile_Secret.mdx @@ -0,0 +1,118 @@ +--- +title: "Make any Tile Secret" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Make any Tile Secret + + + } + title="Model Page" + href="https://www.printables.com/model/519019" + /> + } + title="Author" + href="https://www.printables.com/@EthanBrucker_750569" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Matrix.mdx b/src/pages/tiles/Matrix.mdx new file mode 100644 index 0000000..996f699 --- /dev/null +++ b/src/pages/tiles/Matrix.mdx @@ -0,0 +1,118 @@ +--- +title: "Matrix" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Matrix + + + } + title="Model Page" + href="https://than.gs/m/899783" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Mechanical_Link.mdx b/src/pages/tiles/Mechanical_Link.mdx new file mode 100644 index 0000000..1e8632b --- /dev/null +++ b/src/pages/tiles/Mechanical_Link.mdx @@ -0,0 +1,118 @@ +--- +title: "Mechanical Link" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Mechanical Link + + + } + title="Model Page" + href="https://than.gs/m/1061125" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Merge.mdx b/src/pages/tiles/Merge.mdx new file mode 100644 index 0000000..8226c1f --- /dev/null +++ b/src/pages/tiles/Merge.mdx @@ -0,0 +1,118 @@ +--- +title: "Merge" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Merge + + + } + title="Model Page" + href="https://than.gs/m/819819" + /> + } + title="Author" + href="https://thangs.com/designer/MrPancake" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/More_Basic_Tiles_(Pack).mdx b/src/pages/tiles/More_Basic_Tiles_(Pack).mdx new file mode 100644 index 0000000..ce8cc79 --- /dev/null +++ b/src/pages/tiles/More_Basic_Tiles_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "More Basic Tiles (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# More Basic Tiles (Pack) + + + } + title="Model Page" + href="https://than.gs/m/871160" + /> + } + title="Author" + href="https://thangs.com/designer/CodeWookiee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Moss.mdx b/src/pages/tiles/Moss.mdx new file mode 100644 index 0000000..3d01dcd --- /dev/null +++ b/src/pages/tiles/Moss.mdx @@ -0,0 +1,118 @@ +--- +title: "Moss" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Moss + + + } + title="Model Page" + href="https://than.gs/m/878598" + /> + } + title="Author" + href="https://thangs.com/designer/acmck821" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Mr__Bones_Wild_Ride.mdx b/src/pages/tiles/Mr__Bones_Wild_Ride.mdx new file mode 100644 index 0000000..09a07cf --- /dev/null +++ b/src/pages/tiles/Mr__Bones_Wild_Ride.mdx @@ -0,0 +1,118 @@ +--- +title: "Mr. Bones Wild Ride" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Mr. Bones Wild Ride + + + } + title="Model Page" + href="https://than.gs/m/911892" + /> + } + title="Author" + href="https://thangs.com/designer/BitTorrent" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Multi-Bridge.mdx b/src/pages/tiles/Multi-Bridge.mdx new file mode 100644 index 0000000..aad664a --- /dev/null +++ b/src/pages/tiles/Multi-Bridge.mdx @@ -0,0 +1,118 @@ +--- +title: "Multi-Bridge" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Multi-Bridge + + + } + title="Model Page" + href="https://than.gs/m/941704" + /> + } + title="Author" + href="https://thangs.com/designer/Flabort" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Multi-Layer.mdx b/src/pages/tiles/Multi-Layer.mdx new file mode 100644 index 0000000..c5c56bf --- /dev/null +++ b/src/pages/tiles/Multi-Layer.mdx @@ -0,0 +1,118 @@ +--- +title: "Multi-Layer" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Multi-Layer + + + } + title="Model Page" + href="https://than.gs/m/898122" + /> + } + title="Author" + href="https://thangs.com/designer/wdan36453" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Mutagen.mdx b/src/pages/tiles/Mutagen.mdx new file mode 100644 index 0000000..1527468 --- /dev/null +++ b/src/pages/tiles/Mutagen.mdx @@ -0,0 +1,118 @@ +--- +title: "Mutagen" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Mutagen + + + } + title="Model Page" + href="https://than.gs/m/904435" + /> + } + title="Author" + href="https://thangs.com/designer/Abalidoth" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Naval_Mine.mdx b/src/pages/tiles/Naval_Mine.mdx new file mode 100644 index 0000000..7d9dceb --- /dev/null +++ b/src/pages/tiles/Naval_Mine.mdx @@ -0,0 +1,118 @@ +--- +title: "Naval Mine" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Naval Mine + + + } + title="Model Page" + href="https://than.gs/m/1123900" + /> + } + title="Author" + href="https://thangs.com/designer/cadeluca" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Necromancer.mdx b/src/pages/tiles/Necromancer.mdx new file mode 100644 index 0000000..806719f --- /dev/null +++ b/src/pages/tiles/Necromancer.mdx @@ -0,0 +1,118 @@ +--- +title: "Necromancer" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Necromancer + + + } + title="Model Page" + href="https://than.gs/m/902949" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Newton_Effect.mdx b/src/pages/tiles/Newton_Effect.mdx new file mode 100644 index 0000000..c96d55f --- /dev/null +++ b/src/pages/tiles/Newton_Effect.mdx @@ -0,0 +1,118 @@ +--- +title: "Newton Effect" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Newton Effect + + + } + title="Model Page" + href="https://than.gs/m/874202" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Newton_s_Cradle_Remix.mdx b/src/pages/tiles/Newton_s_Cradle_Remix.mdx new file mode 100644 index 0000000..b21ba4e --- /dev/null +++ b/src/pages/tiles/Newton_s_Cradle_Remix.mdx @@ -0,0 +1,118 @@ +--- +title: "Newton's Cradle Remix" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Newton's Cradle Remix + + + } + title="Model Page" + href="https://than.gs/m/979139" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git "a/src/pages/tiles/Newton\342\200\231s_Cradle.mdx" "b/src/pages/tiles/Newton\342\200\231s_Cradle.mdx" new file mode 100644 index 0000000..186e741 --- /dev/null +++ "b/src/pages/tiles/Newton\342\200\231s_Cradle.mdx" @@ -0,0 +1,118 @@ +--- +title: "Newton’s Cradle" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Newton’s Cradle + + + } + title="Model Page" + href="https://than.gs/m/874875" + /> + } + title="Author" + href="https://thangs.com/designer/timothyjackman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Ninjitsu.mdx b/src/pages/tiles/Ninjitsu.mdx new file mode 100644 index 0000000..6fda57e --- /dev/null +++ b/src/pages/tiles/Ninjitsu.mdx @@ -0,0 +1,118 @@ +--- +title: "Ninjitsu" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Ninjitsu + + + } + title="Model Page" + href="https://www.printables.com/model/995038" + /> + } + title="Author" + href="https://www.printables.com/@CallumMcLach_2078891" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Noah_s_Ark.mdx b/src/pages/tiles/Noah_s_Ark.mdx new file mode 100644 index 0000000..57d2ac5 --- /dev/null +++ b/src/pages/tiles/Noah_s_Ark.mdx @@ -0,0 +1,118 @@ +--- +title: "Noah's Ark" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Noah's Ark + + + } + title="Model Page" + href="https://than.gs/m/1069587" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Not_Enough_Basic_(Pack).mdx b/src/pages/tiles/Not_Enough_Basic_(Pack).mdx new file mode 100644 index 0000000..689c4f7 --- /dev/null +++ b/src/pages/tiles/Not_Enough_Basic_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Not Enough Basic (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Not Enough Basic (Pack) + + + } + title="Model Page" + href="https://than.gs/designer/MMDaemon/3d-model/886499" + /> + } + title="Author" + href="https://thangs.com/designer/MMDaemon" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Nuclear.mdx b/src/pages/tiles/Nuclear.mdx new file mode 100644 index 0000000..7491019 --- /dev/null +++ b/src/pages/tiles/Nuclear.mdx @@ -0,0 +1,118 @@ +--- +title: "Nuclear" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Nuclear + + + } + title="Model Page" + href="https://than.gs/m/1069592" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Octopus_Trap.mdx b/src/pages/tiles/Octopus_Trap.mdx new file mode 100644 index 0000000..bbce075 --- /dev/null +++ b/src/pages/tiles/Octopus_Trap.mdx @@ -0,0 +1,118 @@ +--- +title: "Octopus Trap" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Octopus Trap + + + } + title="Model Page" + href="https://than.gs/m/901438" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Off_Ramp.mdx b/src/pages/tiles/Off_Ramp.mdx new file mode 100644 index 0000000..09fe1c5 --- /dev/null +++ b/src/pages/tiles/Off_Ramp.mdx @@ -0,0 +1,118 @@ +--- +title: "Off Ramp" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Off Ramp + + + } + title="Model Page" + href="https://than.gs/m/921600" + /> + } + title="Author" + href="https://thangs.com/designer/thehobojoe.cup" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Overrider.mdx b/src/pages/tiles/Overrider.mdx new file mode 100644 index 0000000..5d3a709 --- /dev/null +++ b/src/pages/tiles/Overrider.mdx @@ -0,0 +1,118 @@ +--- +title: "Overrider" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Overrider + + + } + title="Model Page" + href="https://than.gs/m/980073" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Pachinko.mdx b/src/pages/tiles/Pachinko.mdx new file mode 100644 index 0000000..7a69b4f --- /dev/null +++ b/src/pages/tiles/Pachinko.mdx @@ -0,0 +1,118 @@ +--- +title: "Pachinko" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Pachinko + + + } + title="Model Page" + href="https://than.gs/m/837138" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Pachinko_(M2_Screws).mdx b/src/pages/tiles/Pachinko_(M2_Screws).mdx new file mode 100644 index 0000000..a01cd30 --- /dev/null +++ b/src/pages/tiles/Pachinko_(M2_Screws).mdx @@ -0,0 +1,118 @@ +--- +title: "Pachinko (M2 Screws)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Pachinko (M2 Screws) + + + } + title="Model Page" + href="https://www.printables.com/model/552996" + /> + } + title="Author" + href="https://www.printables.com/@Hackjaz" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Pachinko_Death.mdx b/src/pages/tiles/Pachinko_Death.mdx new file mode 100644 index 0000000..3abd339 --- /dev/null +++ b/src/pages/tiles/Pachinko_Death.mdx @@ -0,0 +1,118 @@ +--- +title: "Pachinko Death" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Pachinko Death + + + } + title="Model Page" + href="https://than.gs/m/876402" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Pachinko_Dual.mdx b/src/pages/tiles/Pachinko_Dual.mdx new file mode 100644 index 0000000..dd5b44e --- /dev/null +++ b/src/pages/tiles/Pachinko_Dual.mdx @@ -0,0 +1,118 @@ +--- +title: "Pachinko Dual" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Pachinko Dual + + + } + title="Model Page" + href="https://than.gs/m/872056" + /> + } + title="Author" + href="https://thangs.com/designer/timothyjackman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Pachinko_Hail.mdx b/src/pages/tiles/Pachinko_Hail.mdx new file mode 100644 index 0000000..5c473f5 --- /dev/null +++ b/src/pages/tiles/Pachinko_Hail.mdx @@ -0,0 +1,118 @@ +--- +title: "Pachinko Hail" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Pachinko Hail + + + } + title="Model Page" + href="https://than.gs/m/909433" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Pachinko_Secret_(Baltazar).mdx b/src/pages/tiles/Pachinko_Secret_(Baltazar).mdx new file mode 100644 index 0000000..5a5d6fd --- /dev/null +++ b/src/pages/tiles/Pachinko_Secret_(Baltazar).mdx @@ -0,0 +1,118 @@ +--- +title: "Pachinko Secret (Baltazar)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Pachinko Secret (Baltazar) + + + } + title="Model Page" + href="https://than.gs/m/946946" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Pachinko_Secret_(axel_brouart).mdx b/src/pages/tiles/Pachinko_Secret_(axel_brouart).mdx new file mode 100644 index 0000000..124a143 --- /dev/null +++ b/src/pages/tiles/Pachinko_Secret_(axel_brouart).mdx @@ -0,0 +1,118 @@ +--- +title: "Pachinko Secret (axel.brouart)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Pachinko Secret (axel.brouart) + + + } + title="Model Page" + href="https://than.gs/m/914496" + /> + } + title="Author" + href="https://thangs.com/designer/axel.brouart" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Parrallel_Reali-Tile.mdx b/src/pages/tiles/Parrallel_Reali-Tile.mdx new file mode 100644 index 0000000..e9a6590 --- /dev/null +++ b/src/pages/tiles/Parrallel_Reali-Tile.mdx @@ -0,0 +1,118 @@ +--- +title: "Parrallel Reali-Tile" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Parrallel Reali-Tile + + + } + title="Model Page" + href="https://than.gs/m/927936" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Pause_Tile.mdx b/src/pages/tiles/Pause_Tile.mdx new file mode 100644 index 0000000..942cb1a --- /dev/null +++ b/src/pages/tiles/Pause_Tile.mdx @@ -0,0 +1,118 @@ +--- +title: "Pause Tile" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Pause Tile + + + } + title="Model Page" + href="https://than.gs/m/1091501" + /> + } + title="Author" + href="https://thangs.com/designer/blake.frankenberger" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Peace_Trap.mdx b/src/pages/tiles/Peace_Trap.mdx new file mode 100644 index 0000000..5f9295c --- /dev/null +++ b/src/pages/tiles/Peace_Trap.mdx @@ -0,0 +1,118 @@ +--- +title: "Peace Trap" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Peace Trap + + + } + title="Model Page" + href="https://than.gs/m/1003682" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Peeper.mdx b/src/pages/tiles/Peeper.mdx new file mode 100644 index 0000000..b9f11d2 --- /dev/null +++ b/src/pages/tiles/Peeper.mdx @@ -0,0 +1,118 @@ +--- +title: "Peeper" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Peeper + + + } + title="Model Page" + href="https://than.gs/m/942563" + /> + } + title="Author" + href="https://thangs.com/designer/timothyjackman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Pendulum.mdx b/src/pages/tiles/Pendulum.mdx new file mode 100644 index 0000000..29286d9 --- /dev/null +++ b/src/pages/tiles/Pendulum.mdx @@ -0,0 +1,118 @@ +--- +title: "Pendulum" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Pendulum + + + } + title="Model Page" + href="https://than.gs/m/899784" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Pit_Stop.mdx b/src/pages/tiles/Pit_Stop.mdx new file mode 100644 index 0000000..4080aa4 --- /dev/null +++ b/src/pages/tiles/Pit_Stop.mdx @@ -0,0 +1,118 @@ +--- +title: "Pit Stop" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Pit Stop + + + } + title="Model Page" + href="https://than.gs/m/875911" + /> + } + title="Author" + href="https://thangs.com/designer/CodeWookiee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Pitfall_Trap.mdx b/src/pages/tiles/Pitfall_Trap.mdx new file mode 100644 index 0000000..04556da --- /dev/null +++ b/src/pages/tiles/Pitfall_Trap.mdx @@ -0,0 +1,118 @@ +--- +title: "Pitfall Trap" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Pitfall Trap + + + } + title="Model Page" + href="https://than.gs/m/902785" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Plateau.mdx b/src/pages/tiles/Plateau.mdx new file mode 100644 index 0000000..9677312 --- /dev/null +++ b/src/pages/tiles/Plateau.mdx @@ -0,0 +1,118 @@ +--- +title: "Plateau" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Plateau + + + } + title="Model Page" + href="https://than.gs/m/878535" + /> + } + title="Author" + href="https://thangs.com/designer/timothyjackman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/PokeTile.mdx b/src/pages/tiles/PokeTile.mdx new file mode 100644 index 0000000..7e82af9 --- /dev/null +++ b/src/pages/tiles/PokeTile.mdx @@ -0,0 +1,118 @@ +--- +title: "PokeTile" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# PokeTile + + + } + title="Model Page" + href="https://than.gs/m/909403" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Polygon_(Pack).mdx b/src/pages/tiles/Polygon_(Pack).mdx new file mode 100644 index 0000000..d5d7246 --- /dev/null +++ b/src/pages/tiles/Polygon_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Polygon (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Polygon (Pack) + + + } + title="Model Page" + href="https://than.gs/m/920134" + /> + } + title="Author" + href="https://thangs.com/designer/Lykrast" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Power_Trap.mdx b/src/pages/tiles/Power_Trap.mdx new file mode 100644 index 0000000..057fbde --- /dev/null +++ b/src/pages/tiles/Power_Trap.mdx @@ -0,0 +1,118 @@ +--- +title: "Power Trap" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Power Trap + + + } + title="Model Page" + href="https://than.gs/m/1003683" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Psychic.mdx b/src/pages/tiles/Psychic.mdx new file mode 100644 index 0000000..94789c7 --- /dev/null +++ b/src/pages/tiles/Psychic.mdx @@ -0,0 +1,118 @@ +--- +title: "Psychic" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Psychic + + + } + title="Model Page" + href="https://than.gs/m/924633" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Quad_Trap.mdx b/src/pages/tiles/Quad_Trap.mdx new file mode 100644 index 0000000..c5c748b --- /dev/null +++ b/src/pages/tiles/Quad_Trap.mdx @@ -0,0 +1,118 @@ +--- +title: "Quad Trap" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Quad Trap + + + } + title="Model Page" + href="https://than.gs/m/911169" + /> + } + title="Author" + href="https://thangs.com/designer/jaceubs" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Quantum.mdx b/src/pages/tiles/Quantum.mdx new file mode 100644 index 0000000..2c57fdf --- /dev/null +++ b/src/pages/tiles/Quantum.mdx @@ -0,0 +1,118 @@ +--- +title: "Quantum" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Quantum + + + } + title="Model Page" + href="https://than.gs/m/924631" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Quantum_Phase.mdx b/src/pages/tiles/Quantum_Phase.mdx new file mode 100644 index 0000000..3b589f1 --- /dev/null +++ b/src/pages/tiles/Quantum_Phase.mdx @@ -0,0 +1,118 @@ +--- +title: "Quantum Phase" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Quantum Phase + + + } + title="Model Page" + href="https://www.printables.com/model/993816" + /> + } + title="Author" + href="https://www.printables.com/@CallumMcLach_2078891" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Queen_Bee.mdx b/src/pages/tiles/Queen_Bee.mdx new file mode 100644 index 0000000..f3947e6 --- /dev/null +++ b/src/pages/tiles/Queen_Bee.mdx @@ -0,0 +1,118 @@ +--- +title: "Queen Bee" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Queen Bee + + + } + title="Model Page" + href="https://than.gs/m/902111" + /> + } + title="Author" + href="https://thangs.com/designer/g0m" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Question_Block_Secret_Lid.mdx b/src/pages/tiles/Question_Block_Secret_Lid.mdx new file mode 100644 index 0000000..f4943fa --- /dev/null +++ b/src/pages/tiles/Question_Block_Secret_Lid.mdx @@ -0,0 +1,118 @@ +--- +title: "Question Block Secret Lid" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Question Block Secret Lid + + + } + title="Model Page" + href="https://www.printables.com/model/632975" + /> + } + title="Author" + href="https://www.printables.com/@MattCooper" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Radioactive.mdx b/src/pages/tiles/Radioactive.mdx new file mode 100644 index 0000000..41e69dd --- /dev/null +++ b/src/pages/tiles/Radioactive.mdx @@ -0,0 +1,118 @@ +--- +title: "Radioactive" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Radioactive + + + } + title="Model Page" + href="https://than.gs/m/921997" + /> + } + title="Author" + href="https://thangs.com/designer/hpalinux" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Railroad_Switch.mdx b/src/pages/tiles/Railroad_Switch.mdx new file mode 100644 index 0000000..e14a070 --- /dev/null +++ b/src/pages/tiles/Railroad_Switch.mdx @@ -0,0 +1,118 @@ +--- +title: "Railroad Switch" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Railroad Switch + + + } + title="Model Page" + href="https://than.gs/m/872390" + /> + } + title="Author" + href="https://thangs.com/designer/SpaceKotik" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Randomizer.mdx b/src/pages/tiles/Randomizer.mdx new file mode 100644 index 0000000..6dc4591 --- /dev/null +++ b/src/pages/tiles/Randomizer.mdx @@ -0,0 +1,118 @@ +--- +title: "Randomizer" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Randomizer + + + } + title="Model Page" + href="https://than.gs/m/819553" + /> + } + title="Author" + href="https://thangs.com/designer/MrPancake" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Raze.mdx b/src/pages/tiles/Raze.mdx new file mode 100644 index 0000000..947aeba --- /dev/null +++ b/src/pages/tiles/Raze.mdx @@ -0,0 +1,118 @@ +--- +title: "Raze" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Raze + + + } + title="Model Page" + href="https://www.thingiverse.com/thing:6086678" + /> + } + title="Author" + href="https://www.thingiverse.com/Pjw9308" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Reactor_Meltdown.mdx b/src/pages/tiles/Reactor_Meltdown.mdx new file mode 100644 index 0000000..df06b49 --- /dev/null +++ b/src/pages/tiles/Reactor_Meltdown.mdx @@ -0,0 +1,118 @@ +--- +title: "Reactor Meltdown" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Reactor Meltdown + + + } + title="Model Page" + href="https://www.printables.com/model/563450" + /> + } + title="Author" + href="https://www.printables.com/@JonneTerlouw_315239" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Red_Hot_Steel_Ball_Tile_RHBST.mdx b/src/pages/tiles/Red_Hot_Steel_Ball_Tile_RHBST.mdx new file mode 100644 index 0000000..594f38c --- /dev/null +++ b/src/pages/tiles/Red_Hot_Steel_Ball_Tile_RHBST.mdx @@ -0,0 +1,118 @@ +--- +title: "Red Hot Steel Ball Tile RHBST" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Red Hot Steel Ball Tile RHBST + + + } + title="Model Page" + href="https://than.gs/m/856444" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Redirect.mdx b/src/pages/tiles/Redirect.mdx new file mode 100644 index 0000000..a08b8bb --- /dev/null +++ b/src/pages/tiles/Redirect.mdx @@ -0,0 +1,118 @@ +--- +title: "Redirect" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Redirect + + + } + title="Model Page" + href="https://than.gs/m/908996" + /> + } + title="Author" + href="https://thangs.com/designer/andrewtho5942" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Reliquary.mdx b/src/pages/tiles/Reliquary.mdx new file mode 100644 index 0000000..dd259e4 --- /dev/null +++ b/src/pages/tiles/Reliquary.mdx @@ -0,0 +1,118 @@ +--- +title: "Reliquary" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Reliquary + + + } + title="Model Page" + href="https://than.gs/m/949390" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Reroute_(Pack).mdx b/src/pages/tiles/Reroute_(Pack).mdx new file mode 100644 index 0000000..6c83b9c --- /dev/null +++ b/src/pages/tiles/Reroute_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Reroute (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Reroute (Pack) + + + } + title="Model Page" + href="https://than.gs/m/902024" + /> + } + title="Author" + href="https://thangs.com/designer/jaceubs" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Respawn.mdx b/src/pages/tiles/Respawn.mdx new file mode 100644 index 0000000..1909405 --- /dev/null +++ b/src/pages/tiles/Respawn.mdx @@ -0,0 +1,118 @@ +--- +title: "Respawn" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Respawn + + + } + title="Model Page" + href="https://than.gs/m/874859" + /> + } + title="Author" + href="https://thangs.com/designer/lucas.kristandt" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Reveal.mdx b/src/pages/tiles/Reveal.mdx new file mode 100644 index 0000000..448a19e --- /dev/null +++ b/src/pages/tiles/Reveal.mdx @@ -0,0 +1,118 @@ +--- +title: "Reveal" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Reveal + + + } + title="Model Page" + href="https://than.gs/m/1134244" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Revolver.mdx b/src/pages/tiles/Revolver.mdx new file mode 100644 index 0000000..6475980 --- /dev/null +++ b/src/pages/tiles/Revolver.mdx @@ -0,0 +1,118 @@ +--- +title: "Revolver" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Revolver + + + } + title="Model Page" + href="https://than.gs/m/863269" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Rewind.mdx b/src/pages/tiles/Rewind.mdx new file mode 100644 index 0000000..7482ba2 --- /dev/null +++ b/src/pages/tiles/Rewind.mdx @@ -0,0 +1,118 @@ +--- +title: "Rewind" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Rewind + + + } + title="Model Page" + href="https://than.gs/m/899786" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Riptide.mdx b/src/pages/tiles/Riptide.mdx new file mode 100644 index 0000000..af3ba84 --- /dev/null +++ b/src/pages/tiles/Riptide.mdx @@ -0,0 +1,118 @@ +--- +title: "Riptide" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Riptide + + + } + title="Model Page" + href="https://than.gs/m/1130359" + /> + } + title="Author" + href="https://thangs.com/designer/cadeluca" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Roadblock.mdx b/src/pages/tiles/Roadblock.mdx new file mode 100644 index 0000000..33bfa54 --- /dev/null +++ b/src/pages/tiles/Roadblock.mdx @@ -0,0 +1,118 @@ +--- +title: "Roadblock" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Roadblock + + + } + title="Model Page" + href="https://than.gs/m/903489" + /> + } + title="Author" + href="https://thangs.com/designer/IceChes" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Roadblock_Wall.mdx b/src/pages/tiles/Roadblock_Wall.mdx new file mode 100644 index 0000000..99e677e --- /dev/null +++ b/src/pages/tiles/Roadblock_Wall.mdx @@ -0,0 +1,118 @@ +--- +title: "Roadblock Wall" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Roadblock Wall + + + } + title="Model Page" + href="https://than.gs/m/1093407" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Rock.mdx b/src/pages/tiles/Rock.mdx new file mode 100644 index 0000000..d7a9e3d --- /dev/null +++ b/src/pages/tiles/Rock.mdx @@ -0,0 +1,118 @@ +--- +title: "Rock" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Rock + + + } + title="Model Page" + href="https://than.gs/m/872764" + /> + } + title="Author" + href="https://thangs.com/designer/Typical%20lachy%20" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Rocky_Mountain_Reprap_Festival_2023.mdx b/src/pages/tiles/Rocky_Mountain_Reprap_Festival_2023.mdx new file mode 100644 index 0000000..235be38 --- /dev/null +++ b/src/pages/tiles/Rocky_Mountain_Reprap_Festival_2023.mdx @@ -0,0 +1,118 @@ +--- +title: "Rocky Mountain Reprap Festival 2023" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Rocky Mountain Reprap Festival 2023 + + + } + title="Model Page" + href="https://www.thingiverse.com/thing:5984204" + /> + } + title="Author" + href="https://www.thingiverse.com/ericrkjones" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Rocky_Rock.mdx b/src/pages/tiles/Rocky_Rock.mdx new file mode 100644 index 0000000..29d0d2b --- /dev/null +++ b/src/pages/tiles/Rocky_Rock.mdx @@ -0,0 +1,118 @@ +--- +title: "Rocky Rock" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Rocky Rock + + + } + title="Model Page" + href="https://than.gs/m/925729" + /> + } + title="Author" + href="https://thangs.com/designer/BitTorrent" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Rotate.mdx b/src/pages/tiles/Rotate.mdx new file mode 100644 index 0000000..d2c5eb2 --- /dev/null +++ b/src/pages/tiles/Rotate.mdx @@ -0,0 +1,118 @@ +--- +title: "Rotate" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Rotate + + + } + title="Model Page" + href="https://than.gs/m/910361" + /> + } + title="Author" + href="https://thangs.com/designer/andrewtho5942" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Rotate_Remix.mdx b/src/pages/tiles/Rotate_Remix.mdx new file mode 100644 index 0000000..2e15b67 --- /dev/null +++ b/src/pages/tiles/Rotate_Remix.mdx @@ -0,0 +1,118 @@ +--- +title: "Rotate Remix" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Rotate Remix + + + } + title="Model Page" + href="https://than.gs/m/963736" + /> + } + title="Author" + href="https://thangs.com/designer/edster18" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Scissors.mdx b/src/pages/tiles/Scissors.mdx new file mode 100644 index 0000000..4e5d6b6 --- /dev/null +++ b/src/pages/tiles/Scissors.mdx @@ -0,0 +1,118 @@ +--- +title: "Scissors" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Scissors + + + } + title="Model Page" + href="https://than.gs/m/979168" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Seawall.mdx b/src/pages/tiles/Seawall.mdx new file mode 100644 index 0000000..486c13d --- /dev/null +++ b/src/pages/tiles/Seawall.mdx @@ -0,0 +1,118 @@ +--- +title: "Seawall" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Seawall + + + } + title="Model Page" + href="https://than.gs/m/1136874" + /> + } + title="Author" + href="https://thangs.com/designer/cadeluca" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Secret_(Pack).mdx b/src/pages/tiles/Secret_(Pack).mdx new file mode 100644 index 0000000..1f72bed --- /dev/null +++ b/src/pages/tiles/Secret_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Secret (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Secret (Pack) + + + } + title="Model Page" + href="https://than.gs/m/856513" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Secret_Click_(Pack).mdx b/src/pages/tiles/Secret_Click_(Pack).mdx new file mode 100644 index 0000000..1381ede --- /dev/null +++ b/src/pages/tiles/Secret_Click_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Secret Click (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Secret Click (Pack) + + + } + title="Model Page" + href="https://than.gs/m/1134237" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Secret_Lids__Magnet.mdx b/src/pages/tiles/Secret_Lids__Magnet.mdx new file mode 100644 index 0000000..df7f61b --- /dev/null +++ b/src/pages/tiles/Secret_Lids__Magnet.mdx @@ -0,0 +1,118 @@ +--- +title: "Secret Lids, Magnet" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Secret Lids, Magnet + + + } + title="Model Page" + href="https://thangs.com/designer/ben.smallwood98/3d-model/Hextraction%20Secret%20Tiles%20With%20Magnets-920273 " + /> + } + title="Author" + href="https://thangs.com/designer/ben.smallwood98" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Secret_Remix_(kevin_rabie)_(mod).mdx b/src/pages/tiles/Secret_Remix_(kevin_rabie)_(mod).mdx new file mode 100644 index 0000000..340823d --- /dev/null +++ b/src/pages/tiles/Secret_Remix_(kevin_rabie)_(mod).mdx @@ -0,0 +1,118 @@ +--- +title: "Secret Remix (kevin.rabie) (mod)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Secret Remix (kevin.rabie) (mod) + + + } + title="Model Page" + href="https://thangs.com/designer/kevin.rabie/3d-model/Remix%20of%20Hextraction%20Secret%20Tiles-878661 " + /> + } + title="Author" + href="https://thangs.com/designer/kevin.rabie" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Secret_Remix_(loupottage)_(mod).mdx b/src/pages/tiles/Secret_Remix_(loupottage)_(mod).mdx new file mode 100644 index 0000000..b4bd5fc --- /dev/null +++ b/src/pages/tiles/Secret_Remix_(loupottage)_(mod).mdx @@ -0,0 +1,118 @@ +--- +title: "Secret Remix (loupottage) (mod)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Secret Remix (loupottage) (mod) + + + } + title="Model Page" + href="https://thangs.com/designer/loupottage/3d-model/hextraction%20fixed%20secret%20lid.stl-888418 " + /> + } + title="Author" + href="https://thangs.com/designer/loupottage" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Secret_Remix_(tained_camper)_(mod).mdx b/src/pages/tiles/Secret_Remix_(tained_camper)_(mod).mdx new file mode 100644 index 0000000..0781cc1 --- /dev/null +++ b/src/pages/tiles/Secret_Remix_(tained_camper)_(mod).mdx @@ -0,0 +1,118 @@ +--- +title: "Secret Remix (tained.camper) (mod)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Secret Remix (tained.camper) (mod) + + + } + title="Model Page" + href="https://thangs.com/designer/tainted.camper/3d-model/Remix%20of%20Hextraction%20Secret%20Tiles-943899" + /> + } + title="Author" + href="https://thangs.com/designer/tainted.camper" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Seek.mdx b/src/pages/tiles/Seek.mdx new file mode 100644 index 0000000..a674dc8 --- /dev/null +++ b/src/pages/tiles/Seek.mdx @@ -0,0 +1,118 @@ +--- +title: "Seek" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Seek + + + } + title="Model Page" + href="https://than.gs/m/856455" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Seesaw.mdx b/src/pages/tiles/Seesaw.mdx new file mode 100644 index 0000000..4b45e12 --- /dev/null +++ b/src/pages/tiles/Seesaw.mdx @@ -0,0 +1,118 @@ +--- +title: "Seesaw" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Seesaw + + + } + title="Model Page" + href="https://than.gs/m/975595" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git "a/src/pages/tiles/Sensei\342\200\231s_Divining_Top.mdx" "b/src/pages/tiles/Sensei\342\200\231s_Divining_Top.mdx" new file mode 100644 index 0000000..38b4dc9 --- /dev/null +++ "b/src/pages/tiles/Sensei\342\200\231s_Divining_Top.mdx" @@ -0,0 +1,118 @@ +--- +title: "Sensei’s Divining Top" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Sensei’s Divining Top + + + } + title="Model Page" + href="https://than.gs/m/967807" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Shahrazad.mdx b/src/pages/tiles/Shahrazad.mdx new file mode 100644 index 0000000..af8f2ef --- /dev/null +++ b/src/pages/tiles/Shahrazad.mdx @@ -0,0 +1,118 @@ +--- +title: "Shahrazad" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Shahrazad + + + } + title="Model Page" + href="https://than.gs/m/863261" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Shahrazad_Secret_Lid_(Mod).mdx b/src/pages/tiles/Shahrazad_Secret_Lid_(Mod).mdx new file mode 100644 index 0000000..aa2c37d --- /dev/null +++ b/src/pages/tiles/Shahrazad_Secret_Lid_(Mod).mdx @@ -0,0 +1,118 @@ +--- +title: "Shahrazad Secret Lid (Mod)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Shahrazad Secret Lid (Mod) + + + } + title="Model Page" + href="https://than.gs/m/957256" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Shockwave.mdx b/src/pages/tiles/Shockwave.mdx new file mode 100644 index 0000000..bdf4d23 --- /dev/null +++ b/src/pages/tiles/Shockwave.mdx @@ -0,0 +1,118 @@ +--- +title: "Shockwave" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Shockwave + + + } + title="Model Page" + href="https://than.gs/m/980147" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Shotgun.mdx b/src/pages/tiles/Shotgun.mdx new file mode 100644 index 0000000..42640f2 --- /dev/null +++ b/src/pages/tiles/Shotgun.mdx @@ -0,0 +1,118 @@ +--- +title: "Shotgun" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Shotgun + + + } + title="Model Page" + href="https://than.gs/m/907312" + /> + } + title="Author" + href="https://thangs.com/designer/cswenson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Shrink_Ray.mdx b/src/pages/tiles/Shrink_Ray.mdx new file mode 100644 index 0000000..1b7609c --- /dev/null +++ b/src/pages/tiles/Shrink_Ray.mdx @@ -0,0 +1,118 @@ +--- +title: "Shrink Ray" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Shrink Ray + + + } + title="Model Page" + href="https://than.gs/m/863264" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Shrink_Ray_(5mm_Ball_Storage).mdx b/src/pages/tiles/Shrink_Ray_(5mm_Ball_Storage).mdx new file mode 100644 index 0000000..9de8b38 --- /dev/null +++ b/src/pages/tiles/Shrink_Ray_(5mm_Ball_Storage).mdx @@ -0,0 +1,118 @@ +--- +title: "Shrink Ray (5mm Ball Storage)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Shrink Ray (5mm Ball Storage) + + + } + title="Model Page" + href="https://than.gs/m/914513" + /> + } + title="Author" + href="https://thangs.com/designer/BitTorrent" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Shuttle_Block.mdx b/src/pages/tiles/Shuttle_Block.mdx new file mode 100644 index 0000000..6764007 --- /dev/null +++ b/src/pages/tiles/Shuttle_Block.mdx @@ -0,0 +1,118 @@ +--- +title: "Shuttle Block" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Shuttle Block + + + } + title="Model Page" + href="https://than.gs/m/910652" + /> + } + title="Author" + href="https://thangs.com/designer/cswenson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Shuttle_Lock.mdx b/src/pages/tiles/Shuttle_Lock.mdx new file mode 100644 index 0000000..ccb52ad --- /dev/null +++ b/src/pages/tiles/Shuttle_Lock.mdx @@ -0,0 +1,118 @@ +--- +title: "Shuttle Lock" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Shuttle Lock + + + } + title="Model Page" + href="https://than.gs/m/910501" + /> + } + title="Author" + href="https://thangs.com/designer/cswenson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Side_Flop.mdx b/src/pages/tiles/Side_Flop.mdx new file mode 100644 index 0000000..5a8404f --- /dev/null +++ b/src/pages/tiles/Side_Flop.mdx @@ -0,0 +1,118 @@ +--- +title: "Side Flop" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Side Flop + + + } + title="Model Page" + href="https://than.gs/m/1116295" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Single_Use.mdx b/src/pages/tiles/Single_Use.mdx new file mode 100644 index 0000000..f9f1be3 --- /dev/null +++ b/src/pages/tiles/Single_Use.mdx @@ -0,0 +1,118 @@ +--- +title: "Single Use" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Single Use + + + } + title="Model Page" + href="https://than.gs/m/911480" + /> + } + title="Author" + href="https://thangs.com/designer/cswenson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Sinkhole.mdx b/src/pages/tiles/Sinkhole.mdx new file mode 100644 index 0000000..27230ca --- /dev/null +++ b/src/pages/tiles/Sinkhole.mdx @@ -0,0 +1,118 @@ +--- +title: "Sinkhole" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Sinkhole + + + } + title="Model Page" + href="https://than.gs/m/821457" + /> + } + title="Author" + href="https://thangs.com/designer/Biro100" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Six_Shooter.mdx b/src/pages/tiles/Six_Shooter.mdx new file mode 100644 index 0000000..cb2a02e --- /dev/null +++ b/src/pages/tiles/Six_Shooter.mdx @@ -0,0 +1,118 @@ +--- +title: "Six Shooter" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Six Shooter + + + } + title="Model Page" + href="https://than.gs/m/1120190" + /> + } + title="Author" + href="https://thangs.com/designer/cadeluca" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Skeleton__Balance.mdx b/src/pages/tiles/Skeleton__Balance.mdx new file mode 100644 index 0000000..d336a45 --- /dev/null +++ b/src/pages/tiles/Skeleton__Balance.mdx @@ -0,0 +1,118 @@ +--- +title: "Skeleton, Balance" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Skeleton, Balance + + + } + title="Model Page" + href="https://than.gs/m/873878" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Skeleton__Balance_I.mdx b/src/pages/tiles/Skeleton__Balance_I.mdx new file mode 100644 index 0000000..d75a3cc --- /dev/null +++ b/src/pages/tiles/Skeleton__Balance_I.mdx @@ -0,0 +1,118 @@ +--- +title: "Skeleton, Balance I" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Skeleton, Balance I + + + } + title="Model Page" + href="https://than.gs/m/873876" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Skeleton__Bridge.mdx b/src/pages/tiles/Skeleton__Bridge.mdx new file mode 100644 index 0000000..23bda5f --- /dev/null +++ b/src/pages/tiles/Skeleton__Bridge.mdx @@ -0,0 +1,118 @@ +--- +title: "Skeleton, Bridge" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Skeleton, Bridge + + + } + title="Model Page" + href="https://than.gs/m/873879" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Skeleton__Bridge_I.mdx b/src/pages/tiles/Skeleton__Bridge_I.mdx new file mode 100644 index 0000000..d1a98ff --- /dev/null +++ b/src/pages/tiles/Skeleton__Bridge_I.mdx @@ -0,0 +1,118 @@ +--- +title: "Skeleton, Bridge I" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Skeleton, Bridge I + + + } + title="Model Page" + href="https://than.gs/m/873877" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Skip.mdx b/src/pages/tiles/Skip.mdx new file mode 100644 index 0000000..1fd1197 --- /dev/null +++ b/src/pages/tiles/Skip.mdx @@ -0,0 +1,118 @@ +--- +title: "Skip" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Skip + + + } + title="Model Page" + href="https://than.gs/m/980142" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Skyrail.mdx b/src/pages/tiles/Skyrail.mdx new file mode 100644 index 0000000..960bd33 --- /dev/null +++ b/src/pages/tiles/Skyrail.mdx @@ -0,0 +1,118 @@ +--- +title: "Skyrail" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Skyrail + + + } + title="Model Page" + href="https://than.gs/m/1061124" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Slow_Ball_Trap.mdx b/src/pages/tiles/Slow_Ball_Trap.mdx new file mode 100644 index 0000000..115223b --- /dev/null +++ b/src/pages/tiles/Slow_Ball_Trap.mdx @@ -0,0 +1,118 @@ +--- +title: "Slow Ball Trap" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Slow Ball Trap + + + } + title="Model Page" + href="https://than.gs/m/907424" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Slowdown.mdx b/src/pages/tiles/Slowdown.mdx new file mode 100644 index 0000000..5f3107c --- /dev/null +++ b/src/pages/tiles/Slowdown.mdx @@ -0,0 +1,118 @@ +--- +title: "Slowdown" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Slowdown + + + } + title="Model Page" + href="https://than.gs/m/903487" + /> + } + title="Author" + href="https://thangs.com/designer/IceChes" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Small_Chimney_Trap.mdx b/src/pages/tiles/Small_Chimney_Trap.mdx new file mode 100644 index 0000000..c6c42f1 --- /dev/null +++ b/src/pages/tiles/Small_Chimney_Trap.mdx @@ -0,0 +1,118 @@ +--- +title: "Small Chimney Trap" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Small Chimney Trap + + + } + title="Model Page" + href="https://than.gs/m/901448" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Sniper.mdx b/src/pages/tiles/Sniper.mdx new file mode 100644 index 0000000..e350da1 --- /dev/null +++ b/src/pages/tiles/Sniper.mdx @@ -0,0 +1,118 @@ +--- +title: "Sniper" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Sniper + + + } + title="Model Page" + href="https://than.gs/m/980112" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Snowflake.mdx b/src/pages/tiles/Snowflake.mdx new file mode 100644 index 0000000..fdcbfe8 --- /dev/null +++ b/src/pages/tiles/Snowflake.mdx @@ -0,0 +1,118 @@ +--- +title: "Snowflake" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Snowflake + + + } + title="Model Page" + href="https://than.gs/m/1003671" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Solar_Flare.mdx b/src/pages/tiles/Solar_Flare.mdx new file mode 100644 index 0000000..7a6f8df --- /dev/null +++ b/src/pages/tiles/Solar_Flare.mdx @@ -0,0 +1,118 @@ +--- +title: "Solar Flare" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Solar Flare + + + } + title="Model Page" + href="https://than.gs/m/1069626" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Sonar.mdx b/src/pages/tiles/Sonar.mdx new file mode 100644 index 0000000..f2268ac --- /dev/null +++ b/src/pages/tiles/Sonar.mdx @@ -0,0 +1,118 @@ +--- +title: "Sonar" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Sonar + + + } + title="Model Page" + href="https://than.gs/m/1134417" + /> + } + title="Author" + href="https://thangs.com/designer/cadeluca" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Sorting.mdx b/src/pages/tiles/Sorting.mdx new file mode 100644 index 0000000..4010c2a --- /dev/null +++ b/src/pages/tiles/Sorting.mdx @@ -0,0 +1,118 @@ +--- +title: "Sorting" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Sorting + + + } + title="Model Page" + href="https://than.gs/m/909257" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Sozu.mdx b/src/pages/tiles/Sozu.mdx new file mode 100644 index 0000000..91ad415 --- /dev/null +++ b/src/pages/tiles/Sozu.mdx @@ -0,0 +1,118 @@ +--- +title: "Sozu" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Sozu + + + } + title="Model Page" + href="https://than.gs/m/856441" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Spiral_S.mdx b/src/pages/tiles/Spiral_S.mdx new file mode 100644 index 0000000..5c33a95 --- /dev/null +++ b/src/pages/tiles/Spiral_S.mdx @@ -0,0 +1,118 @@ +--- +title: "Spiral S" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Spiral S + + + } + title="Model Page" + href="https://than.gs/m/1064287" + /> + } + title="Author" + href="https://thangs.com/designer/Lykrast" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Spiral_Trial.mdx b/src/pages/tiles/Spiral_Trial.mdx new file mode 100644 index 0000000..7c27b80 --- /dev/null +++ b/src/pages/tiles/Spiral_Trial.mdx @@ -0,0 +1,118 @@ +--- +title: "Spiral Trial" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Spiral Trial + + + } + title="Model Page" + href="https://than.gs/m/902818" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Splitter.mdx b/src/pages/tiles/Splitter.mdx new file mode 100644 index 0000000..4212e70 --- /dev/null +++ b/src/pages/tiles/Splitter.mdx @@ -0,0 +1,118 @@ +--- +title: "Splitter" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Splitter + + + } + title="Model Page" + href="https://than.gs/m/1003685" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Spooky.mdx b/src/pages/tiles/Spooky.mdx new file mode 100644 index 0000000..a85dc8a --- /dev/null +++ b/src/pages/tiles/Spooky.mdx @@ -0,0 +1,118 @@ +--- +title: "Spooky" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Spooky + + + } + title="Model Page" + href="https://than.gs/m/918354" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Spooky_Mod_(Oujia_Text).mdx b/src/pages/tiles/Spooky_Mod_(Oujia_Text).mdx new file mode 100644 index 0000000..7c95f43 --- /dev/null +++ b/src/pages/tiles/Spooky_Mod_(Oujia_Text).mdx @@ -0,0 +1,118 @@ +--- +title: "Spooky Mod (Oujia Text)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Spooky Mod (Oujia Text) + + + } + title="Model Page" + href="https://than.gs/m/976133" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Sportsball.mdx b/src/pages/tiles/Sportsball.mdx new file mode 100644 index 0000000..5d74458 --- /dev/null +++ b/src/pages/tiles/Sportsball.mdx @@ -0,0 +1,118 @@ +--- +title: "Sportsball" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Sportsball + + + } + title="Model Page" + href="https://than.gs/m/907206" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Start_Ramp.mdx b/src/pages/tiles/Start_Ramp.mdx new file mode 100644 index 0000000..6883cf1 --- /dev/null +++ b/src/pages/tiles/Start_Ramp.mdx @@ -0,0 +1,118 @@ +--- +title: "Start Ramp" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Start Ramp + + + } + title="Model Page" + href="https://than.gs/m/1069633" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Stop.mdx b/src/pages/tiles/Stop.mdx new file mode 100644 index 0000000..f70246a --- /dev/null +++ b/src/pages/tiles/Stop.mdx @@ -0,0 +1,118 @@ +--- +title: "Stop" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Stop + + + } + title="Model Page" + href="https://than.gs/m/979171" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Strange_Simples_(Pack).mdx b/src/pages/tiles/Strange_Simples_(Pack).mdx new file mode 100644 index 0000000..5ac526f --- /dev/null +++ b/src/pages/tiles/Strange_Simples_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Strange Simples (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Strange Simples (Pack) + + + } + title="Model Page" + href="https://than.gs/m/878941" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Subspace.mdx b/src/pages/tiles/Subspace.mdx new file mode 100644 index 0000000..74b653b --- /dev/null +++ b/src/pages/tiles/Subspace.mdx @@ -0,0 +1,118 @@ +--- +title: "Subspace" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Subspace + + + } + title="Model Page" + href="https://than.gs/m/899787" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Summon.mdx b/src/pages/tiles/Summon.mdx new file mode 100644 index 0000000..310add4 --- /dev/null +++ b/src/pages/tiles/Summon.mdx @@ -0,0 +1,118 @@ +--- +title: "Summon" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Summon + + + } + title="Model Page" + href="https://than.gs/m/903423" + /> + } + title="Author" + href="https://thangs.com/designer/IceChes" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Swap.mdx b/src/pages/tiles/Swap.mdx new file mode 100644 index 0000000..aa3d6f2 --- /dev/null +++ b/src/pages/tiles/Swap.mdx @@ -0,0 +1,118 @@ +--- +title: "Swap" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Swap + + + } + title="Model Page" + href="https://than.gs/m/920437" + /> + } + title="Author" + href="https://thangs.com/designer/Lykrast" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Sweep.mdx b/src/pages/tiles/Sweep.mdx new file mode 100644 index 0000000..ae6dfaf --- /dev/null +++ b/src/pages/tiles/Sweep.mdx @@ -0,0 +1,118 @@ +--- +title: "Sweep" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Sweep + + + } + title="Model Page" + href="https://than.gs/m/920516" + /> + } + title="Author" + href="https://thangs.com/designer/Lykrast" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/T_Switch.mdx b/src/pages/tiles/T_Switch.mdx new file mode 100644 index 0000000..0d85c5c --- /dev/null +++ b/src/pages/tiles/T_Switch.mdx @@ -0,0 +1,118 @@ +--- +title: "T Switch" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# T Switch + + + } + title="Model Page" + href="https://than.gs/m/1116307" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Tactical_Discard.mdx b/src/pages/tiles/Tactical_Discard.mdx new file mode 100644 index 0000000..84c36ca --- /dev/null +++ b/src/pages/tiles/Tactical_Discard.mdx @@ -0,0 +1,118 @@ +--- +title: "Tactical Discard" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Tactical Discard + + + } + title="Model Page" + href="https://than.gs/m/903425" + /> + } + title="Author" + href="https://thangs.com/designer/IceChes" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Take_The_Tilepill.mdx b/src/pages/tiles/Take_The_Tilepill.mdx new file mode 100644 index 0000000..d4485c3 --- /dev/null +++ b/src/pages/tiles/Take_The_Tilepill.mdx @@ -0,0 +1,118 @@ +--- +title: "Take The Tilepill" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Take The Tilepill + + + } + title="Model Page" + href="https://than.gs/m/939116" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Target.mdx b/src/pages/tiles/Target.mdx new file mode 100644 index 0000000..981c1cf --- /dev/null +++ b/src/pages/tiles/Target.mdx @@ -0,0 +1,118 @@ +--- +title: "Target" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Target + + + } + title="Model Page" + href="https://than.gs/m/1044333" + /> + } + title="Author" + href="https://thangs.com/designer/SlappingCarrot9" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Teleport.mdx b/src/pages/tiles/Teleport.mdx new file mode 100644 index 0000000..44aeadd --- /dev/null +++ b/src/pages/tiles/Teleport.mdx @@ -0,0 +1,118 @@ +--- +title: "Teleport" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Teleport + + + } + title="Model Page" + href="https://than.gs/m/856643" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Tentacle.mdx b/src/pages/tiles/Tentacle.mdx new file mode 100644 index 0000000..94aa9b8 --- /dev/null +++ b/src/pages/tiles/Tentacle.mdx @@ -0,0 +1,118 @@ +--- +title: "Tentacle" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Tentacle + + + } + title="Model Page" + href="https://than.gs/m/907448" + /> + } + title="Author" + href="https://thangs.com/designer/cswenson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Terramorphic.mdx b/src/pages/tiles/Terramorphic.mdx new file mode 100644 index 0000000..66e85b8 --- /dev/null +++ b/src/pages/tiles/Terramorphic.mdx @@ -0,0 +1,118 @@ +--- +title: "Terramorphic" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Terramorphic + + + } + title="Model Page" + href="https://than.gs/m/939110" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Tile_Built_for_Two.mdx b/src/pages/tiles/Tile_Built_for_Two.mdx new file mode 100644 index 0000000..fe3ef77 --- /dev/null +++ b/src/pages/tiles/Tile_Built_for_Two.mdx @@ -0,0 +1,118 @@ +--- +title: "Tile Built for Two" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Tile Built for Two + + + } + title="Model Page" + href="https://than.gs/m/856464" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Tile_Rick.mdx b/src/pages/tiles/Tile_Rick.mdx new file mode 100644 index 0000000..4ff42e2 --- /dev/null +++ b/src/pages/tiles/Tile_Rick.mdx @@ -0,0 +1,118 @@ +--- +title: "Tile Rick" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Tile Rick + + + } + title="Model Page" + href="https://than.gs/m/972125" + /> + } + title="Author" + href="https://thangs.com/designer/Balthazar" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Tile_With_Nothing.mdx b/src/pages/tiles/Tile_With_Nothing.mdx new file mode 100644 index 0000000..637db31 --- /dev/null +++ b/src/pages/tiles/Tile_With_Nothing.mdx @@ -0,0 +1,118 @@ +--- +title: "Tile With Nothing" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Tile With Nothing + + + } + title="Model Page" + href="https://than.gs/m/856442" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Title_Card_Logo_(Pack).mdx b/src/pages/tiles/Title_Card_Logo_(Pack).mdx new file mode 100644 index 0000000..70debdc --- /dev/null +++ b/src/pages/tiles/Title_Card_Logo_(Pack).mdx @@ -0,0 +1,118 @@ +--- +title: "Title Card Logo (Pack)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Title Card Logo (Pack) + + + } + title="Model Page" + href="https://than.gs/m/856499" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Trampoline.mdx b/src/pages/tiles/Trampoline.mdx new file mode 100644 index 0000000..8826ab9 --- /dev/null +++ b/src/pages/tiles/Trampoline.mdx @@ -0,0 +1,118 @@ +--- +title: "Trampoline" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Trampoline + + + } + title="Model Page" + href="https://than.gs/m/907224" + /> + } + title="Author" + href="https://thangs.com/designer/timothyjackman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Trampoline_(More_Holes_Remix).mdx b/src/pages/tiles/Trampoline_(More_Holes_Remix).mdx new file mode 100644 index 0000000..7989781 --- /dev/null +++ b/src/pages/tiles/Trampoline_(More_Holes_Remix).mdx @@ -0,0 +1,118 @@ +--- +title: "Trampoline (More Holes Remix)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Trampoline (More Holes Remix) + + + } + title="Model Page" + href="https://than.gs/m/907434" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Trapdoor_Sinkhole.mdx b/src/pages/tiles/Trapdoor_Sinkhole.mdx new file mode 100644 index 0000000..a100c5d --- /dev/null +++ b/src/pages/tiles/Trapdoor_Sinkhole.mdx @@ -0,0 +1,118 @@ +--- +title: "Trapdoor Sinkhole" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Trapdoor Sinkhole + + + } + title="Model Page" + href="https://than.gs/m/1069609" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Trash_Can_(BowTy).mdx b/src/pages/tiles/Trash_Can_(BowTy).mdx new file mode 100644 index 0000000..d08428d --- /dev/null +++ b/src/pages/tiles/Trash_Can_(BowTy).mdx @@ -0,0 +1,118 @@ +--- +title: "Trash Can (BowTy)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Trash Can (BowTy) + + + } + title="Model Page" + href="https://than.gs/m/980137" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Trash_Can_(Psychotrop).mdx b/src/pages/tiles/Trash_Can_(Psychotrop).mdx new file mode 100644 index 0000000..c5409e5 --- /dev/null +++ b/src/pages/tiles/Trash_Can_(Psychotrop).mdx @@ -0,0 +1,118 @@ +--- +title: "Trash Can (Psychotrop)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Trash Can (Psychotrop) + + + } + title="Model Page" + href="https://www.printables.com/model/495385" + /> + } + title="Author" + href="https://www.printables.com/@Psychotrop_106848" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Trash_Can_(Psychotrop)_(Card).mdx b/src/pages/tiles/Trash_Can_(Psychotrop)_(Card).mdx new file mode 100644 index 0000000..cc37b3f --- /dev/null +++ b/src/pages/tiles/Trash_Can_(Psychotrop)_(Card).mdx @@ -0,0 +1,118 @@ +--- +title: "Trash Can (Psychotrop) (Card)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Trash Can (Psychotrop) (Card) + + + } + title="Model Page" + href="https://www.printables.com/model/996063" + /> + } + title="Author" + href="https://www.printables.com/@TrashBoatRob_2408810" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Tree.mdx b/src/pages/tiles/Tree.mdx new file mode 100644 index 0000000..0bdff65 --- /dev/null +++ b/src/pages/tiles/Tree.mdx @@ -0,0 +1,118 @@ +--- +title: "Tree" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Tree + + + } + title="Model Page" + href="https://than.gs/m/875600" + /> + } + title="Author" + href="https://thangs.com/designer/timothyjackman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Triangle.mdx b/src/pages/tiles/Triangle.mdx new file mode 100644 index 0000000..150e68c --- /dev/null +++ b/src/pages/tiles/Triangle.mdx @@ -0,0 +1,118 @@ +--- +title: "Triangle" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Triangle + + + } + title="Model Page" + href="https://than.gs/m/979174" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git "a/src/pages/tiles/Trickshot_(10mm\303\270).mdx" "b/src/pages/tiles/Trickshot_(10mm\303\270).mdx" new file mode 100644 index 0000000..f0372f1 --- /dev/null +++ "b/src/pages/tiles/Trickshot_(10mm\303\270).mdx" @@ -0,0 +1,118 @@ +--- +title: "Trickshot (10mmø)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Trickshot (10mmø) + + + } + title="Model Page" + href="https://than.gs/m/887828" + /> + } + title="Author" + href="https://thangs.com/designer/andrewtho5942" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git "a/src/pages/tiles/Trickshot_(6mm\303\270).mdx" "b/src/pages/tiles/Trickshot_(6mm\303\270).mdx" new file mode 100644 index 0000000..fac6710 --- /dev/null +++ "b/src/pages/tiles/Trickshot_(6mm\303\270).mdx" @@ -0,0 +1,118 @@ +--- +title: "Trickshot (6mmø)" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Trickshot (6mmø) + + + } + title="Model Page" + href="https://than.gs/m/897076" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Triple_Jump.mdx b/src/pages/tiles/Triple_Jump.mdx new file mode 100644 index 0000000..bf6ca93 --- /dev/null +++ b/src/pages/tiles/Triple_Jump.mdx @@ -0,0 +1,118 @@ +--- +title: "Triple Jump" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Triple Jump + + + } + title="Model Page" + href="https://than.gs/m/1119398" + /> + } + title="Author" + href="https://thangs.com/designer/Drubble" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Tsunami.mdx b/src/pages/tiles/Tsunami.mdx new file mode 100644 index 0000000..7ded1a5 --- /dev/null +++ b/src/pages/tiles/Tsunami.mdx @@ -0,0 +1,118 @@ +--- +title: "Tsunami" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Tsunami + + + } + title="Model Page" + href="https://than.gs/m/1031250" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Turnstile.mdx b/src/pages/tiles/Turnstile.mdx new file mode 100644 index 0000000..9b652e0 --- /dev/null +++ b/src/pages/tiles/Turnstile.mdx @@ -0,0 +1,118 @@ +--- +title: "Turnstile" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Turnstile + + + } + title="Model Page" + href="https://than.gs/m/911746" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Turntable.mdx b/src/pages/tiles/Turntable.mdx new file mode 100644 index 0000000..dd57a21 --- /dev/null +++ b/src/pages/tiles/Turntable.mdx @@ -0,0 +1,118 @@ +--- +title: "Turntable" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Turntable + + + } + title="Model Page" + href="https://than.gs/m/915264" + /> + } + title="Author" + href="https://thangs.com/designer/FyrfyX8" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Twozu.mdx b/src/pages/tiles/Twozu.mdx new file mode 100644 index 0000000..5fd595c --- /dev/null +++ b/src/pages/tiles/Twozu.mdx @@ -0,0 +1,118 @@ +--- +title: "Twozu" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Twozu + + + } + title="Model Page" + href="https://than.gs/m/975596" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/UFO.mdx b/src/pages/tiles/UFO.mdx new file mode 100644 index 0000000..f4d66a4 --- /dev/null +++ b/src/pages/tiles/UFO.mdx @@ -0,0 +1,118 @@ +--- +title: "UFO" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# UFO + + + } + title="Model Page" + href="https://than.gs/m/873865" + /> + } + title="Author" + href="https://thangs.com/designer/CodeWookiee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/U_F_T_.mdx b/src/pages/tiles/U_F_T_.mdx new file mode 100644 index 0000000..6f7c76a --- /dev/null +++ b/src/pages/tiles/U_F_T_.mdx @@ -0,0 +1,118 @@ +--- +title: "U.F.T." +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# U.F.T. + + + } + title="Model Page" + href="https://than.gs/m/917147" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Uno_Reverse.mdx b/src/pages/tiles/Uno_Reverse.mdx new file mode 100644 index 0000000..eabc88d --- /dev/null +++ b/src/pages/tiles/Uno_Reverse.mdx @@ -0,0 +1,118 @@ +--- +title: "Uno Reverse" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Uno Reverse + + + } + title="Model Page" + href="https://www.printables.com/model/845365" + /> + } + title="Author" + href="https://www.printables.com/@JohnPaterson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Uno_Skip.mdx b/src/pages/tiles/Uno_Skip.mdx new file mode 100644 index 0000000..c15face --- /dev/null +++ b/src/pages/tiles/Uno_Skip.mdx @@ -0,0 +1,118 @@ +--- +title: "Uno Skip" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Uno Skip + + + } + title="Model Page" + href="https://www.printables.com/model/845361" + /> + } + title="Author" + href="https://www.printables.com/@JohnPaterson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Uno_Wild.mdx b/src/pages/tiles/Uno_Wild.mdx new file mode 100644 index 0000000..9e2e98a --- /dev/null +++ b/src/pages/tiles/Uno_Wild.mdx @@ -0,0 +1,118 @@ +--- +title: "Uno Wild" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Uno Wild + + + } + title="Model Page" + href="https://www.printables.com/model/845425" + /> + } + title="Author" + href="https://www.printables.com/@JohnPaterson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Unreliable_Effect.mdx b/src/pages/tiles/Unreliable_Effect.mdx new file mode 100644 index 0000000..6da00c9 --- /dev/null +++ b/src/pages/tiles/Unreliable_Effect.mdx @@ -0,0 +1,118 @@ +--- +title: "Unreliable Effect" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Unreliable Effect + + + } + title="Model Page" + href="https://than.gs/m/883261" + /> + } + title="Author" + href="https://thangs.com/designer/elizupke" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/UwU.mdx b/src/pages/tiles/UwU.mdx new file mode 100644 index 0000000..4d13f7f --- /dev/null +++ b/src/pages/tiles/UwU.mdx @@ -0,0 +1,118 @@ +--- +title: "UwU" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# UwU + + + } + title="Model Page" + href="https://than.gs/m/903488" + /> + } + title="Author" + href="https://thangs.com/designer/IceChes" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/V.mdx b/src/pages/tiles/V.mdx new file mode 100644 index 0000000..8db4f93 --- /dev/null +++ b/src/pages/tiles/V.mdx @@ -0,0 +1,118 @@ +--- +title: "V" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# V + + + } + title="Model Page" + href="https://than.gs/m/979180" + /> + } + title="Author" + href="https://thangs.com/designer/BowTy%20Productions" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Vertex-Traversing.mdx b/src/pages/tiles/Vertex-Traversing.mdx new file mode 100644 index 0000000..34af4f4 --- /dev/null +++ b/src/pages/tiles/Vertex-Traversing.mdx @@ -0,0 +1,118 @@ +--- +title: "Vertex-Traversing" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Vertex-Traversing + + + } + title="Model Page" + href="https://www.printables.com/model/483257" + /> + } + title="Author" + href="https://www.printables.com/@bbprintz" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Void.mdx b/src/pages/tiles/Void.mdx new file mode 100644 index 0000000..bc51834 --- /dev/null +++ b/src/pages/tiles/Void.mdx @@ -0,0 +1,118 @@ +--- +title: "Void" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Void + + + } + title="Model Page" + href="https://than.gs/m/856445" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Volcano.mdx b/src/pages/tiles/Volcano.mdx new file mode 100644 index 0000000..bfa7423 --- /dev/null +++ b/src/pages/tiles/Volcano.mdx @@ -0,0 +1,118 @@ +--- +title: "Volcano" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Volcano + + + } + title="Model Page" + href="https://than.gs/m/1069633" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Vortex.mdx b/src/pages/tiles/Vortex.mdx new file mode 100644 index 0000000..db55fe3 --- /dev/null +++ b/src/pages/tiles/Vortex.mdx @@ -0,0 +1,118 @@ +--- +title: "Vortex" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Vortex + + + } + title="Model Page" + href="https://than.gs/m/886610" + /> + } + title="Author" + href="https://thangs.com/designer/timothyjackman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/W.mdx b/src/pages/tiles/W.mdx new file mode 100644 index 0000000..6f5b2b7 --- /dev/null +++ b/src/pages/tiles/W.mdx @@ -0,0 +1,118 @@ +--- +title: "W" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# W + + + } + title="Model Page" + href="https://than.gs/m/924483" + /> + } + title="Author" + href="https://thangs.com/designer/Lykrast" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Wave.mdx b/src/pages/tiles/Wave.mdx new file mode 100644 index 0000000..e7c3b20 --- /dev/null +++ b/src/pages/tiles/Wave.mdx @@ -0,0 +1,118 @@ +--- +title: "Wave" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Wave + + + } + title="Model Page" + href="https://than.gs/m/1031247" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Wave__Overdrive.mdx b/src/pages/tiles/Wave__Overdrive.mdx new file mode 100644 index 0000000..423ceab --- /dev/null +++ b/src/pages/tiles/Wave__Overdrive.mdx @@ -0,0 +1,118 @@ +--- +title: "Wave, Overdrive" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Wave, Overdrive + + + } + title="Model Page" + href="https://than.gs/m/1031248" + /> + } + title="Author" + href="https://thangs.com/designer/NoStepOnDeez" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Wheel_of_Teleportune.mdx b/src/pages/tiles/Wheel_of_Teleportune.mdx new file mode 100644 index 0000000..e150b83 --- /dev/null +++ b/src/pages/tiles/Wheel_of_Teleportune.mdx @@ -0,0 +1,118 @@ +--- +title: "Wheel of Teleportune" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Wheel of Teleportune + + + } + title="Model Page" + href="https://than.gs/m/873189" + /> + } + title="Author" + href="https://thangs.com/designer/CodeWookiee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Wheeze_Plate.mdx b/src/pages/tiles/Wheeze_Plate.mdx new file mode 100644 index 0000000..fbfdd04 --- /dev/null +++ b/src/pages/tiles/Wheeze_Plate.mdx @@ -0,0 +1,118 @@ +--- +title: "Wheeze Plate" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Wheeze Plate + + + } + title="Model Page" + href="https://than.gs/m/879539" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/World_s_Most_Annoying_Tile_in_the_World.mdx b/src/pages/tiles/World_s_Most_Annoying_Tile_in_the_World.mdx new file mode 100644 index 0000000..5d18edd --- /dev/null +++ b/src/pages/tiles/World_s_Most_Annoying_Tile_in_the_World.mdx @@ -0,0 +1,118 @@ +--- +title: "World's Most Annoying Tile in the World" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# World's Most Annoying Tile in the World + + + } + title="Model Page" + href="https://than.gs/m/911748" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Worm_Hole.mdx b/src/pages/tiles/Worm_Hole.mdx new file mode 100644 index 0000000..793905e --- /dev/null +++ b/src/pages/tiles/Worm_Hole.mdx @@ -0,0 +1,118 @@ +--- +title: "Worm Hole" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Worm Hole + + + } + title="Model Page" + href="https://than.gs/m/910657" + /> + } + title="Author" + href="https://thangs.com/designer/cswenson" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Wrench.mdx b/src/pages/tiles/Wrench.mdx new file mode 100644 index 0000000..0166464 --- /dev/null +++ b/src/pages/tiles/Wrench.mdx @@ -0,0 +1,118 @@ +--- +title: "Wrench" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Wrench + + + } + title="Model Page" + href="https://than.gs/m/920544" + /> + } + title="Author" + href="https://thangs.com/designer/Lykrast" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/XC.mdx b/src/pages/tiles/XC.mdx new file mode 100644 index 0000000..205807b --- /dev/null +++ b/src/pages/tiles/XC.mdx @@ -0,0 +1,118 @@ +--- +title: "XC" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# XC + + + } + title="Model Page" + href="https://than.gs/m/871018" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/XC_Stealth.mdx b/src/pages/tiles/XC_Stealth.mdx new file mode 100644 index 0000000..9acd055 --- /dev/null +++ b/src/pages/tiles/XC_Stealth.mdx @@ -0,0 +1,118 @@ +--- +title: "XC Stealth" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# XC Stealth + + + } + title="Model Page" + href="https://than.gs/m/871054" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/XX.mdx b/src/pages/tiles/XX.mdx new file mode 100644 index 0000000..2f3d5fa --- /dev/null +++ b/src/pages/tiles/XX.mdx @@ -0,0 +1,118 @@ +--- +title: "XX" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# XX + + + } + title="Model Page" + href="https://than.gs/m/924527" + /> + } + title="Author" + href="https://thangs.com/designer/Lykrast" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Yours_Tiley.mdx b/src/pages/tiles/Yours_Tiley.mdx new file mode 100644 index 0000000..c491230 --- /dev/null +++ b/src/pages/tiles/Yours_Tiley.mdx @@ -0,0 +1,118 @@ +--- +title: "Yours Tiley" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Yours Tiley + + + } + title="Model Page" + href="https://than.gs/m/905251" + /> + } + title="Author" + href="https://thangs.com/designer/skidface222" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Z-DIC.mdx b/src/pages/tiles/Z-DIC.mdx new file mode 100644 index 0000000..d396492 --- /dev/null +++ b/src/pages/tiles/Z-DIC.mdx @@ -0,0 +1,118 @@ +--- +title: "Z-DIC" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Z-DIC + + + } + title="Model Page" + href="https://than.gs/m/818518" + /> + } + title="Author" + href="https://thangs.com/designer/jacob.nowatzke" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Zigzag.mdx b/src/pages/tiles/Zigzag.mdx new file mode 100644 index 0000000..ed77c67 --- /dev/null +++ b/src/pages/tiles/Zigzag.mdx @@ -0,0 +1,118 @@ +--- +title: "Zigzag" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Zigzag + + + } + title="Model Page" + href="https://than.gs/m/888070" + /> + } + title="Author" + href="https://thangs.com/designer/3Dthee" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Zipline.mdx b/src/pages/tiles/Zipline.mdx new file mode 100644 index 0000000..68acdb2 --- /dev/null +++ b/src/pages/tiles/Zipline.mdx @@ -0,0 +1,118 @@ +--- +title: "Zipline" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Zipline + + + } + title="Model Page" + href="https://than.gs/m/904266" + /> + } + title="Author" + href="https://thangs.com/designer/FyrfyX8" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/src/pages/tiles/Zoidberg.mdx b/src/pages/tiles/Zoidberg.mdx new file mode 100644 index 0000000..1114a16 --- /dev/null +++ b/src/pages/tiles/Zoidberg.mdx @@ -0,0 +1,118 @@ +--- +title: "Zoidberg" +--- + +import { Cards } from "nextra/components"; +import { BoxIcon, AccountIcon } from "../../components/icons"; +import HorizontalGrid from '../../components/HorizontalGrid'; +import HorizontalGrid2 from '../../components/HorizontalGrid2'; +import CardBox from '../../components/CardBox'; + + +# Zoidberg + + + } + title="Model Page" + href="https://than.gs/m/856450" + /> + } + title="Author" + href="https://thangs.com/designer/ZackFreedman" + /> + + +## Visual Example 1 (checked feels a bit hard to read) + +| Key | Value | +|-----|-------| +| Generic |
| +| Combo |
| +| Dispenser |
| +| Hole |
| +| Jump |
| +| Layer |
| +| Mechanical |
| +| No Path |
| +| Secret |
| +| Trap |
| +| On Play/Setup |
| +| Trigger |
| +| On Destroy |
| +| Ongoing |
| +| Alters Tile(s) |
| +| Alters Ball(s) |
| +| Alters Hand(s) |
| +| Alters Turn(s) |
| +| Forbidden |
| +| Novelty |
| +| Premium |
| +| Unique |
| +| Virtual |
| +| Board |
| +| Accessory |
| + +## Visual Example 2 (just info dumped in a grid layout) + + + +## Visual Example 3 (separate my higher level tag) + +### Mechanics + + +### Cause + + +### Action + + +### Special + + +### Components + +--- + +## Visual Example 4 (Card style) + + +Pictures (for thangs.com models) will be scraped. diff --git a/theme.config.jsx b/theme.config.jsx index 73e947c..3cf61f4 100644 --- a/theme.config.jsx +++ b/theme.config.jsx @@ -1,4 +1,5 @@ import { useConfig } from "nextra-theme-docs"; +import Link from "next/link"; //todo logo, actual favicon not just a glyph @@ -13,11 +14,10 @@ export default { // color { // hue: // } - //todo: link to official discord, specifically the channel - // chat: { - // link: "the discord link here", - // // defaults icon to discord if no "icon" prop provided - // } + chat: { + link: "https://discord.com/invite/voidstarlab", + // defaults icon to discord if no "icon" prop provided + }, search: { placeholder: "Search...", }, @@ -29,7 +29,7 @@ export default { toggleButton: true, defaultMenuCollapseLevel: 0, }, - //todo see true v false for this config + //todo see true vs false for this config // toc: { // float: false, // } @@ -42,7 +42,7 @@ export default { {/*
*/} {/*

*/} - MIT {new Date().getFullYear()} © Hextraction Catalog + MIT {new Date().getFullYear()} © Hextraction Catalog, a project by cadeluca {/*

*/} {/*
*/}