mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
Finished Complete Rework of the Database
This commit is contained in:
49
data/Sword & Shield/Rebel Clash/117.ts
Normal file
49
data/Sword & Shield/Rebel Clash/117.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Rebel Clash'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Trubbish",
|
||||
},
|
||||
illustrator: "HYOGONOSUKE",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Venoshock",
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent’s Active Pokémon is Poisoned, this attack does 50 more damage.",
|
||||
},
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user