"""The MIT License (MIT)Copyright (c) 2021-present Pycord DevelopmentPermission is hereby granted, free of charge, to any person obtaining acopy of this software and associated documentation files (the "Software"),to deal in the Software without restriction, including without limitationthe rights to use, copy, modify, merge, publish, distribute, sublicense,and/or sell copies of the Software, and to permit persons to whom theSoftware is furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESSOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISINGFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHERDEALINGS IN THE SOFTWARE."""fromtypingimportTYPE_CHECKINGifTYPE_CHECKING:from.stateimportConnectionStatefrom.assetimportAssetfrom.types.collectiblesimportNameplateasNameplatePayload
[docs]classNameplate:""" Represents a Discord Nameplate. .. versionadded:: 2.7 Attributes ---------- sku_id: int The SKU ID of the nameplate. palette: str The color palette of the nameplate. """def__init__(self,data:NameplatePayload,state:"ConnectionState")->None:self.sku_id:int=data["sku_id"]self.palette:str=data["palette"]self._label:str=data["label"]self._asset:str=data["asset"]self._state:ConnectionState=statedef__repr__(self)->str:returnf"<Nameplate sku_id={self.sku_id} palette={self.palette}>"defget_asset(self,animated:bool=False)->Asset:"""Returns the asset of the nameplate. Parameters ---------- animated: :class:`bool` Whether to return the animated version of the asset, in webm version. Defaults to ``False``. """fn="static.png"ifnotanimatedelse"asset.webm"returnAsset(state=self._state,url=f"{Asset.BASE}/assets/collectibles/{self._asset}{fn}",key=self._asset.split("/")[-1],animated=animated,)