From 02b009e2f8a3194d44996fda198a86212243e7cb Mon Sep 17 00:00:00 2001 From: Jacob Hearst Date: Sun, 29 Oct 2023 09:36:27 -0500 Subject: [PATCH] Add vehicle frame effect --- Sources/ScryfallKit/Models/Card/Card+enums.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ScryfallKit/Models/Card/Card+enums.swift b/Sources/ScryfallKit/Models/Card/Card+enums.swift index 695395a..2274077 100644 --- a/Sources/ScryfallKit/Models/Card/Card+enums.swift +++ b/Sources/ScryfallKit/Models/Card/Card+enums.swift @@ -200,7 +200,7 @@ extension Card { /// /// [Scryfall documentation](https://scryfall.com/docs/api/frames#frame-effects) public enum FrameEffect: String, Codable, CaseIterable { - case legendary, miracle, nyxtouched, draft, devoid, tombstone, colorshifted, inverted, sunmoondfc, compasslanddfc, originpwdfc, mooneldrazidfc, waxingandwaningmoondfc, showcase, extendedart, companion, etched, snow, lesson, convertdfc, fandfc, battle, gravestone, fullart, unknown + case legendary, miracle, nyxtouched, draft, devoid, tombstone, colorshifted, inverted, sunmoondfc, compasslanddfc, originpwdfc, mooneldrazidfc, waxingandwaningmoondfc, showcase, extendedart, companion, etched, snow, lesson, convertdfc, fandfc, battle, gravestone, fullart, vehicle, unknown public init(from decoder: Decoder) throws { self = try FrameEffect(rawValue: decoder.singleValueContainer().decode(RawValue.self)) ?? .unknown