-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
16 changed files
with
201 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Base Set 2" | ||
|
||
const deck: Deck = { | ||
id: "td.base4.gc", | ||
name: { | ||
en: "Grass Chopper" | ||
}, | ||
set: Set, | ||
typesFocus: ["Fighting", "Grass"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Base Set 2" | ||
|
||
const deck: Deck = { | ||
id: "td.base4.hw", | ||
name: { | ||
en: "Hot Water" | ||
}, | ||
set: Set, | ||
typesFocus: ["Fire", "Water"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Base Set 2" | ||
|
||
const deck: Deck = { | ||
id: "td.base4.lg", | ||
name: { | ||
en: "Lightning Bug" | ||
}, | ||
set: Set, | ||
typesFocus: ["Lightning", "Grass"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Base Set 2" | ||
|
||
const deck: Deck = { | ||
id: "td.base4.po", | ||
name: { | ||
en: "Psych Out" | ||
}, | ||
set: Set, | ||
typesFocus: ["Psychic", "Water"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Base Set" | ||
|
||
const deck: Deck = { | ||
id: "td.base1.bl", | ||
name: { | ||
en: "Blackout" | ||
}, | ||
set: Set, | ||
typesFocus: ["Water", "Fighting"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Base Set" | ||
|
||
const deck: Deck = { | ||
id: "td.base1.br", | ||
name: { | ||
en: "Brushfire" | ||
}, | ||
set: Set, | ||
typesFocus: ["Fire", "Grass"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Base Set" | ||
|
||
const deck: Deck = { | ||
id: "td.base1.ov", | ||
name: { | ||
en: "Overgrowth" | ||
}, | ||
set: Set, | ||
typesFocus: ["Water", "Grass"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Base Set" | ||
|
||
const deck: Deck = { | ||
id: "td.base1.za", | ||
name: { | ||
en: "Zap!" | ||
}, | ||
set: Set, | ||
typesFocus: ["Lightning", "Psychic"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Fossil" | ||
|
||
const deck: Deck = { | ||
id: "td.base1.bd", | ||
name: { | ||
en: "BodyGuard" | ||
}, | ||
set: Set, | ||
typesFocus: ["Grass", "Fighting"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Base Set" | ||
|
||
const deck: Deck = { | ||
id: "td.base1.ld", | ||
name: { | ||
en: "LockDown" | ||
}, | ||
set: Set, | ||
typesFocus: ["Fire", "Water"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Jungle" | ||
|
||
const deck: Deck = { | ||
id: "td.base2.pr", | ||
name: { | ||
en: "Power Reserve" | ||
}, | ||
set: Set, | ||
typesFocus: ["Psychic", "Grass"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Jungle" | ||
|
||
const deck: Deck = { | ||
id: "td.base2.wb", | ||
name: { | ||
en: "Water Blast" | ||
}, | ||
set: Set, | ||
typesFocus: ["Water", "Fighting"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Team Rocket" | ||
|
||
const deck: Deck = { | ||
id: "td.base4.de", | ||
name: { | ||
en: "Devastation" | ||
}, | ||
set: Set, | ||
typesFocus: ["Grass", "Water"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { Deck } from "../../../../interfaces" | ||
import Set from "../../Team Rocket" | ||
|
||
const deck: Deck = { | ||
id: "td.base4.to", | ||
name: { | ||
en: "Trouble" | ||
}, | ||
set: Set, | ||
typesFocus: ["Psychic", "Grass"], | ||
cards: [] | ||
} | ||
|
||
export default deck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters