mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
47
data-asia/SV/SV5s/077.ts
Normal file
47
data-asia/SV/SV5s/077.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV5s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Mudbray"
|
||||
},
|
||||
|
||||
illustrator: "Narumi Sato",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
id: "Lumpur yang menyelimuti Mudbray adalah hasil memamah biak setelah memakan tanah. Lumpur tersebut tidak akan kering meskipun berjemur dalam waktu yang lama."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Tendangan Penghempas"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Fighting"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Semprotan Lumpur"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Fighting", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user